pub enum TransitState {
Normal,
Exists,
NoAccess,
}
Expand description
Variants§
Normal
Standard state.
Exists
Pause state when destination path exists.
NoAccess
Pause state when current process does not have the permission to access from or to path.
Trait Implementations§
Source§impl Clone for TransitState
impl Clone for TransitState
Source§fn clone(&self) -> TransitState
fn clone(&self) -> TransitState
Returns a copy 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 Hash for TransitState
impl Hash for TransitState
Source§impl PartialEq for TransitState
impl PartialEq for TransitState
impl Eq for TransitState
impl StructuralPartialEq for TransitState
Auto Trait Implementations§
impl Freeze for TransitState
impl RefUnwindSafe for TransitState
impl Send for TransitState
impl Sync for TransitState
impl Unpin for TransitState
impl UnwindSafe for TransitState
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