pub enum OpEnvAction {
Show 18 variants
GetByKey,
InsertWithKey,
SetWithKey,
RemoveWithKey,
Contains,
Insert,
Remove,
Load,
LoadByPath,
CreateNew,
Lock,
Commit,
Abort,
Metadata,
GetCurrentRoot,
Next,
Reset,
List,
}Variants§
GetByKey
InsertWithKey
SetWithKey
RemoveWithKey
Contains
Insert
Remove
Load
LoadByPath
CreateNew
Lock
Commit
Abort
Metadata
GetCurrentRoot
Next
Reset
List
Trait Implementations§
Source§impl Debug for OpEnvAction
impl Debug for OpEnvAction
Source§impl FromStr for OpEnvAction
impl FromStr for OpEnvAction
Source§impl PartialEq for OpEnvAction
impl PartialEq for OpEnvAction
Source§impl ToString for OpEnvAction
impl ToString for OpEnvAction
impl Eq for OpEnvAction
impl StructuralPartialEq for OpEnvAction
Auto Trait Implementations§
impl Freeze for OpEnvAction
impl RefUnwindSafe for OpEnvAction
impl Send for OpEnvAction
impl Sync for OpEnvAction
impl Unpin for OpEnvAction
impl UnwindSafe for OpEnvAction
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more