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