#[repr(C)]pub enum EditEvent {
Active = 1,
Inactive = 2,
Activated = 4,
Deactivated = 8,
Commited = 16,
}
Variants§
Trait Implementations§
Source§impl<'a> From<&'a u32> for &'a EditEvent
impl<'a> From<&'a u32> for &'a EditEvent
Source§fn from(a: &'a nk_edit_events) -> &'a EditEvent
fn from(a: &'a nk_edit_events) -> &'a EditEvent
Converts to this type from the input type.
Source§impl From<EditEvent> for nk_edit_events
impl From<EditEvent> for nk_edit_events
Source§fn from(a: EditEvent) -> nk_edit_events
fn from(a: EditEvent) -> nk_edit_events
Converts to this type from the input type.
Source§impl From<u32> for EditEvent
impl From<u32> for EditEvent
Source§fn from(a: nk_edit_events) -> EditEvent
fn from(a: nk_edit_events) -> EditEvent
Converts to this type from the input type.
impl Copy for EditEvent
impl Eq for EditEvent
impl StructuralPartialEq for EditEvent
Auto Trait Implementations§
impl Freeze for EditEvent
impl RefUnwindSafe for EditEvent
impl Send for EditEvent
impl Sync for EditEvent
impl Unpin for EditEvent
impl UnwindSafe for EditEvent
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