pub enum UnlinkFromTwinoidError {
InternalDeleteLink(DeleteLinkError<TwinoidUserIdRef>),
Internal(AnyError),
}Variants§
InternalDeleteLink(DeleteLinkError<TwinoidUserIdRef>)
Internal(AnyError)
Trait Implementations§
Source§impl Debug for UnlinkFromTwinoidError
impl Debug for UnlinkFromTwinoidError
Source§impl Display for UnlinkFromTwinoidError
impl Display for UnlinkFromTwinoidError
Source§impl Error for UnlinkFromTwinoidError
impl Error for UnlinkFromTwinoidError
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<DeleteLinkError<TwinoidUserIdRef>> for UnlinkFromTwinoidError
impl From<DeleteLinkError<TwinoidUserIdRef>> for UnlinkFromTwinoidError
Source§fn from(source: DeleteLinkError<TwinoidUserIdRef>) -> Self
fn from(source: DeleteLinkError<TwinoidUserIdRef>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UnlinkFromTwinoidError
impl !RefUnwindSafe for UnlinkFromTwinoidError
impl Send for UnlinkFromTwinoidError
impl Sync for UnlinkFromTwinoidError
impl Unpin for UnlinkFromTwinoidError
impl !UnwindSafe for UnlinkFromTwinoidError
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