pub enum ImmediateUsage {
Valid {
slots: ImmediateSlots,
size: u32,
},
Invalid {
size: u32,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ImmediateUsage
impl Clone for ImmediateUsage
Source§fn clone(&self) -> ImmediateUsage
fn clone(&self) -> ImmediateUsage
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 moreSource§impl Debug for ImmediateUsage
impl Debug for ImmediateUsage
Source§impl Default for ImmediateUsage
impl Default for ImmediateUsage
impl Copy for ImmediateUsage
Auto Trait Implementations§
impl Freeze for ImmediateUsage
impl RefUnwindSafe for ImmediateUsage
impl Send for ImmediateUsage
impl Sync for ImmediateUsage
impl Unpin for ImmediateUsage
impl UnwindSafe for ImmediateUsage
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