pub enum RemoteAdminError {
AlreadyExists,
NotFound,
NameSubset {
existing: String,
},
NameSuperset {
existing: String,
},
MasterWithMirror,
TrackingWithPushMirror,
RenameCollision,
}Variants§
AlreadyExists
NotFound
NameSubset
NameSuperset
MasterWithMirror
TrackingWithPushMirror
RenameCollision
Trait Implementations§
Source§impl Clone for RemoteAdminError
impl Clone for RemoteAdminError
Source§fn clone(&self) -> RemoteAdminError
fn clone(&self) -> RemoteAdminError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RemoteAdminError
impl Debug for RemoteAdminError
impl Eq for RemoteAdminError
Source§impl PartialEq for RemoteAdminError
impl PartialEq for RemoteAdminError
impl StructuralPartialEq for RemoteAdminError
Auto Trait Implementations§
impl Freeze for RemoteAdminError
impl RefUnwindSafe for RemoteAdminError
impl Send for RemoteAdminError
impl Sync for RemoteAdminError
impl Unpin for RemoteAdminError
impl UnsafeUnpin for RemoteAdminError
impl UnwindSafe for RemoteAdminError
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