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