pub enum RESUMER {
REQUESTED,
_Reserved(bool),
}
Expand description
Possible values of the field RESUME
Variants§
Implementations§
Source§impl RESUMER
impl RESUMER
Sourcepub fn bit_is_clear(&self) -> bool
pub fn bit_is_clear(&self) -> bool
Returns true
if the bit is clear (0)
Sourcepub fn bit_is_set(&self) -> bool
pub fn bit_is_set(&self) -> bool
Returns true
if the bit is set (1)
Sourcepub fn is_requested(&self) -> bool
pub fn is_requested(&self) -> bool
Checks if the value of the field is REQUESTED
Trait Implementations§
impl Copy for RESUMER
impl StructuralPartialEq for RESUMER
Auto Trait Implementations§
impl Freeze for RESUMER
impl RefUnwindSafe for RESUMER
impl Send for RESUMER
impl Sync for RESUMER
impl Unpin for RESUMER
impl UnwindSafe for RESUMER
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