pub struct ShowState(/* private fields */);Expand description
See cef_show_state_t for more documentation.
Implementations§
Source§impl ShowState
impl ShowState
Sourcepub const NORMAL: Self
pub const NORMAL: Self
See cef_show_state_t::CEF_SHOW_STATE_NORMAL for more documentation.
Sourcepub const MINIMIZED: Self
pub const MINIMIZED: Self
See cef_show_state_t::CEF_SHOW_STATE_MINIMIZED for more documentation.
Sourcepub const MAXIMIZED: Self
pub const MAXIMIZED: Self
See cef_show_state_t::CEF_SHOW_STATE_MAXIMIZED for more documentation.
Sourcepub const FULLSCREEN: Self
pub const FULLSCREEN: Self
See cef_show_state_t::CEF_SHOW_STATE_FULLSCREEN for more documentation.
Sourcepub const HIDDEN: Self
pub const HIDDEN: Self
See cef_show_state_t::CEF_SHOW_STATE_HIDDEN for more documentation.
Sourcepub const NUM_VALUES: Self
pub const NUM_VALUES: Self
See cef_show_state_t::CEF_SHOW_STATE_NUM_VALUES for more documentation.
Trait Implementations§
Source§impl AsMut<cef_show_state_t> for ShowState
impl AsMut<cef_show_state_t> for ShowState
Source§fn as_mut(&mut self) -> &mut cef_show_state_t
fn as_mut(&mut self) -> &mut cef_show_state_t
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsRef<cef_show_state_t> for ShowState
impl AsRef<cef_show_state_t> for ShowState
Source§fn as_ref(&self) -> &cef_show_state_t
fn as_ref(&self) -> &cef_show_state_t
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl From<ShowState> for cef_show_state_t
impl From<ShowState> for cef_show_state_t
Source§impl From<cef_show_state_t> for ShowState
impl From<cef_show_state_t> for ShowState
Source§fn from(value: cef_show_state_t) -> Self
fn from(value: cef_show_state_t) -> Self
Converts to this type from the input type.
impl Copy for ShowState
impl Eq for ShowState
impl StructuralPartialEq for ShowState
Auto Trait Implementations§
impl Freeze for ShowState
impl RefUnwindSafe for ShowState
impl Send for ShowState
impl Sync for ShowState
impl Unpin for ShowState
impl UnwindSafe for ShowState
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