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