pub enum PilotAuthDidRecordError {
Json(Error),
Identifier(IdentifierError),
DidKey(DidKeyError),
Schema(String),
SchemaVersion(u8),
CreatedAt(String),
SignatureEncoding,
PilotIdPublicKey(String),
RecordIdMismatch {
expected: Blake3Hex,
found: Blake3Hex,
},
SignatureVerification,
}Variants§
Json(Error)
Identifier(IdentifierError)
DidKey(DidKeyError)
Schema(String)
SchemaVersion(u8)
CreatedAt(String)
SignatureEncoding
PilotIdPublicKey(String)
RecordIdMismatch
SignatureVerification
Trait Implementations§
Source§impl Debug for PilotAuthDidRecordError
impl Debug for PilotAuthDidRecordError
Source§impl Display for PilotAuthDidRecordError
impl Display for PilotAuthDidRecordError
Source§impl Error for PilotAuthDidRecordError
impl Error for PilotAuthDidRecordError
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<DidKeyError> for PilotAuthDidRecordError
impl From<DidKeyError> for PilotAuthDidRecordError
Source§fn from(source: DidKeyError) -> Self
fn from(source: DidKeyError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for PilotAuthDidRecordError
impl From<Error> for PilotAuthDidRecordError
Source§impl From<IdentifierError> for PilotAuthDidRecordError
impl From<IdentifierError> for PilotAuthDidRecordError
Source§fn from(source: IdentifierError) -> Self
fn from(source: IdentifierError) -> Self
Converts to this type from the input type.
Source§impl From<PilotAuthDidRecordError> for GovernanceStoreError
impl From<PilotAuthDidRecordError> for GovernanceStoreError
Source§fn from(source: PilotAuthDidRecordError) -> Self
fn from(source: PilotAuthDidRecordError) -> Self
Converts to this type from the input type.
Source§impl From<PilotAuthDidRecordError> for PilotAuthDidSyncError
impl From<PilotAuthDidRecordError> for PilotAuthDidSyncError
Source§fn from(source: PilotAuthDidRecordError) -> Self
fn from(source: PilotAuthDidRecordError) -> Self
Converts to this type from the input type.
Source§impl From<PilotAuthDidRecordError> for PilotAuthDidWorkflowError
impl From<PilotAuthDidRecordError> for PilotAuthDidWorkflowError
Source§fn from(source: PilotAuthDidRecordError) -> Self
fn from(source: PilotAuthDidRecordError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PilotAuthDidRecordError
impl !RefUnwindSafe for PilotAuthDidRecordError
impl Send for PilotAuthDidRecordError
impl Sync for PilotAuthDidRecordError
impl Unpin for PilotAuthDidRecordError
impl UnsafeUnpin for PilotAuthDidRecordError
impl !UnwindSafe for PilotAuthDidRecordError
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.