#[non_exhaustive]#[repr(u32)]pub enum cef_navigation_type_t {
NAVIGATION_LINK_CLICKED = 0,
NAVIGATION_FORM_SUBMITTED = 1,
NAVIGATION_BACK_FORWARD = 2,
NAVIGATION_RELOAD = 3,
NAVIGATION_FORM_RESUBMITTED = 4,
NAVIGATION_OTHER = 5,
NAVIGATION_NUM_VALUES = 6,
}Expand description
Navigation types.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
NAVIGATION_LINK_CLICKED = 0
NAVIGATION_FORM_SUBMITTED = 1
NAVIGATION_BACK_FORWARD = 2
NAVIGATION_RELOAD = 3
NAVIGATION_FORM_RESUBMITTED = 4
NAVIGATION_OTHER = 5
NAVIGATION_NUM_VALUES = 6
Trait Implementations§
Source§fn clone(&self) -> cef_navigation_type_t
fn clone(&self) -> cef_navigation_type_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more