#[repr(C)]pub enum CollapseState {
Minimized = 0,
Maximized = 1,
}
Variants§
Trait Implementations§
Source§impl Clone for CollapseState
impl Clone for CollapseState
Source§fn clone(&self) -> CollapseState
fn clone(&self) -> CollapseState
Returns a copy 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 moreSource§impl<'a> From<&'a u32> for &'a CollapseState
impl<'a> From<&'a u32> for &'a CollapseState
Source§fn from(a: &'a nk_collapse_states) -> &'a CollapseState
fn from(a: &'a nk_collapse_states) -> &'a CollapseState
Converts to this type from the input type.
Source§impl From<CollapseState> for nk_collapse_states
impl From<CollapseState> for nk_collapse_states
Source§fn from(a: CollapseState) -> nk_collapse_states
fn from(a: CollapseState) -> nk_collapse_states
Converts to this type from the input type.
Source§impl From<u32> for CollapseState
impl From<u32> for CollapseState
Source§fn from(a: nk_collapse_states) -> CollapseState
fn from(a: nk_collapse_states) -> CollapseState
Converts to this type from the input type.
Source§impl PartialEq for CollapseState
impl PartialEq for CollapseState
impl Copy for CollapseState
impl Eq for CollapseState
impl StructuralPartialEq for CollapseState
Auto Trait Implementations§
impl Freeze for CollapseState
impl RefUnwindSafe for CollapseState
impl Send for CollapseState
impl Sync for CollapseState
impl Unpin for CollapseState
impl UnwindSafe for CollapseState
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