pub enum IdentityNetworkContractError {
UnsupportedSchema(String),
MissingField(&'static str),
DuplicateValue(String),
InvalidReference(String),
InvalidProfile(String),
InvalidDirectoryEntry(String),
InvalidRouting(String),
InvalidQualificationCase(String),
}Variants§
UnsupportedSchema(String)
MissingField(&'static str)
DuplicateValue(String)
InvalidReference(String)
InvalidProfile(String)
InvalidDirectoryEntry(String)
InvalidRouting(String)
InvalidQualificationCase(String)
Trait Implementations§
Source§impl Debug for IdentityNetworkContractError
impl Debug for IdentityNetworkContractError
Source§impl Error for IdentityNetworkContractError
impl Error for IdentityNetworkContractError
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 PartialEq for IdentityNetworkContractError
impl PartialEq for IdentityNetworkContractError
Source§fn eq(&self, other: &IdentityNetworkContractError) -> bool
fn eq(&self, other: &IdentityNetworkContractError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for IdentityNetworkContractError
impl StructuralPartialEq for IdentityNetworkContractError
Auto Trait Implementations§
impl Freeze for IdentityNetworkContractError
impl RefUnwindSafe for IdentityNetworkContractError
impl Send for IdentityNetworkContractError
impl Sync for IdentityNetworkContractError
impl Unpin for IdentityNetworkContractError
impl UnsafeUnpin for IdentityNetworkContractError
impl UnwindSafe for IdentityNetworkContractError
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