pub enum VdirCollectionDeleteError {
UnexpectedArg(Option<VdirReply>),
}Expand description
Failure causes during a VdirCollectionDelete step.
Variants§
UnexpectedArg(Option<VdirReply>)
The driver fed back a reply that does not match the pending request.
Trait Implementations§
Source§impl Clone for VdirCollectionDeleteError
impl Clone for VdirCollectionDeleteError
Source§fn clone(&self) -> VdirCollectionDeleteError
fn clone(&self) -> VdirCollectionDeleteError
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 VdirCollectionDeleteError
impl Debug for VdirCollectionDeleteError
Source§impl Display for VdirCollectionDeleteError
impl Display for VdirCollectionDeleteError
Source§impl Error for VdirCollectionDeleteError
impl Error for VdirCollectionDeleteError
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<VdirCollectionDeleteError> for VdirClientError
Available on crate feature client only.
impl From<VdirCollectionDeleteError> for VdirClientError
Available on crate feature
client only.Source§fn from(source: VdirCollectionDeleteError) -> Self
fn from(source: VdirCollectionDeleteError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VdirCollectionDeleteError
impl RefUnwindSafe for VdirCollectionDeleteError
impl Send for VdirCollectionDeleteError
impl Sync for VdirCollectionDeleteError
impl Unpin for VdirCollectionDeleteError
impl UnsafeUnpin for VdirCollectionDeleteError
impl UnwindSafe for VdirCollectionDeleteError
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