pub enum EntryReject {
Show 14 variants
MissingSignature,
InvalidSignature,
Unattested,
InvalidDescriptorSignature,
DescriptorKeyMismatch,
NotYetValid,
Expired,
InvalidWindow,
InvalidKey,
MalformedDescriptor,
UnsupportedVersion,
UnsupportedDescriptorVersion,
DescriptorNotYetValid,
DescriptorExpired,
}Expand description
Why a set entry was not promoted to VerifiedEndpoint.
Variants§
MissingSignature
InvalidSignature
Unattested
InvalidDescriptorSignature
DescriptorKeyMismatch
NotYetValid
Expired
InvalidWindow
InvalidKey
MalformedDescriptor
UnsupportedVersion
UnsupportedDescriptorVersion
DescriptorNotYetValid
DescriptorExpired
Trait Implementations§
Source§impl Clone for EntryReject
impl Clone for EntryReject
Source§fn clone(&self) -> EntryReject
fn clone(&self) -> EntryReject
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 moreimpl Copy for EntryReject
Source§impl Debug for EntryReject
impl Debug for EntryReject
Source§impl Display for EntryReject
impl Display for EntryReject
impl Eq for EntryReject
Source§impl Error for EntryReject
impl Error for EntryReject
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 EntryReject
impl PartialEq for EntryReject
impl StructuralPartialEq for EntryReject
Auto Trait Implementations§
impl Freeze for EntryReject
impl RefUnwindSafe for EntryReject
impl Send for EntryReject
impl Sync for EntryReject
impl Unpin for EntryReject
impl UnsafeUnpin for EntryReject
impl UnwindSafe for EntryReject
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