pub enum NotifyState {
Inapplicable,
Unknown,
Unchanged,
Missing,
Obstructed,
Changed,
Merged,
Conflicted,
SourceMissing,
}Expand description
State of a working copy item after a notify operation.
Variants§
Inapplicable
Not applicable.
Unknown
State is unknown.
Unchanged
Item was unchanged.
Missing
Item was missing.
Obstructed
An unversioned item obstructed the operation.
Changed
Item was changed.
Merged
Item had modifications merged in.
Conflicted
Item got conflicting modifications.
SourceMissing
The source for a copy was missing.
Trait Implementations§
Source§impl Clone for NotifyState
impl Clone for NotifyState
Source§fn clone(&self) -> NotifyState
fn clone(&self) -> NotifyState
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 NotifyState
impl Debug for NotifyState
Source§impl From<NotifyState> for svn_wc_notify_state_t
impl From<NotifyState> for svn_wc_notify_state_t
Source§fn from(state: NotifyState) -> Self
fn from(state: NotifyState) -> Self
Converts to this type from the input type.
Source§impl From<u32> for NotifyState
impl From<u32> for NotifyState
Source§fn from(state: svn_wc_notify_state_t) -> Self
fn from(state: svn_wc_notify_state_t) -> Self
Converts to this type from the input type.
Source§impl PartialEq for NotifyState
impl PartialEq for NotifyState
impl Copy for NotifyState
impl Eq for NotifyState
impl StructuralPartialEq for NotifyState
Auto Trait Implementations§
impl Freeze for NotifyState
impl RefUnwindSafe for NotifyState
impl Send for NotifyState
impl Sync for NotifyState
impl Unpin for NotifyState
impl UnsafeUnpin for NotifyState
impl UnwindSafe for NotifyState
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