pub enum VdirItemMoveError {
UnexpectedArg(Option<VdirReply>),
Locate(VdirItemLocateError),
}Expand description
Failure causes during a VdirItemMove 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 VdirItemMoveError
impl Clone for VdirItemMoveError
Source§fn clone(&self) -> VdirItemMoveError
fn clone(&self) -> VdirItemMoveError
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 VdirItemMoveError
impl Debug for VdirItemMoveError
Source§impl Display for VdirItemMoveError
impl Display for VdirItemMoveError
Source§impl Error for VdirItemMoveError
impl Error for VdirItemMoveError
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<VdirItemLocateError> for VdirItemMoveError
impl From<VdirItemLocateError> for VdirItemMoveError
Source§fn from(source: VdirItemLocateError) -> Self
fn from(source: VdirItemLocateError) -> Self
Converts to this type from the input type.
Source§impl From<VdirItemMoveError> for VdirClientError
Available on crate feature client only.
impl From<VdirItemMoveError> for VdirClientError
Available on crate feature
client only.Source§fn from(source: VdirItemMoveError) -> Self
fn from(source: VdirItemMoveError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VdirItemMoveError
impl RefUnwindSafe for VdirItemMoveError
impl Send for VdirItemMoveError
impl Sync for VdirItemMoveError
impl Unpin for VdirItemMoveError
impl UnsafeUnpin for VdirItemMoveError
impl UnwindSafe for VdirItemMoveError
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