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