pub enum Mode {
ReadOnly,
ReadWrite {
sync_mode: SyncMode,
},
}Expand description
Environment mode (read-only or read-write).
Variants§
Trait Implementations§
Source§impl From<Mode> for EnvironmentFlags
impl From<Mode> for EnvironmentFlags
impl Copy for Mode
Auto Trait Implementations§
impl Freeze for Mode
impl RefUnwindSafe for Mode
impl Send for Mode
impl Sync for Mode
impl Unpin for Mode
impl UnwindSafe for Mode
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