pub enum VdirCollectionRenameError {
UnexpectedArg(Option<VdirReply>),
}Expand description
Failure causes during a VdirCollectionRename step.
Variants§
UnexpectedArg(Option<VdirReply>)
The driver fed back a reply that does not match the pending request.
Trait Implementations§
Source§impl Clone for VdirCollectionRenameError
impl Clone for VdirCollectionRenameError
Source§fn clone(&self) -> VdirCollectionRenameError
fn clone(&self) -> VdirCollectionRenameError
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 VdirCollectionRenameError
impl Debug for VdirCollectionRenameError
Source§impl Display for VdirCollectionRenameError
impl Display for VdirCollectionRenameError
Source§impl Error for VdirCollectionRenameError
impl Error for VdirCollectionRenameError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<VdirCollectionRenameError> for VdirClientError
Available on crate feature client only.
impl From<VdirCollectionRenameError> for VdirClientError
Available on crate feature
client only.Source§fn from(source: VdirCollectionRenameError) -> Self
fn from(source: VdirCollectionRenameError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VdirCollectionRenameError
impl RefUnwindSafe for VdirCollectionRenameError
impl Send for VdirCollectionRenameError
impl Sync for VdirCollectionRenameError
impl Unpin for VdirCollectionRenameError
impl UnsafeUnpin for VdirCollectionRenameError
impl UnwindSafe for VdirCollectionRenameError
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