pub enum Context {
All,
NoStd,
Std,
}
Variants§
All
Set the context to all
NoStd
Set the context to no-std (no Rust standard library available).
Std
Set the context to std (Rust standard library is available).
Trait Implementations§
Source§impl IntoEnumIterator for Context
impl IntoEnumIterator for Context
type Iterator = ContextIter
fn iter() -> ContextIter ⓘ
impl StructuralPartialEq for Context
Auto Trait Implementations§
impl Freeze for Context
impl RefUnwindSafe for Context
impl Send for Context
impl Sync for Context
impl Unpin for Context
impl UnwindSafe for Context
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