pub enum AttributeCertificateError {
OutOfBounds,
InvalidSize,
}
Expand description
Error returned by AttributeCertificateIterator::new
.
Variants§
OutOfBounds
The certificate table’s range is out of bounds.
InvalidSize
The certificate table’s size does not match the sum of the certificate entry’s aligned sizes.
Trait Implementations§
source§impl Clone for AttributeCertificateError
impl Clone for AttributeCertificateError
source§fn clone(&self) -> AttributeCertificateError
fn clone(&self) -> AttributeCertificateError
Returns a copy of the value. Read more
1.0.0 · 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 AttributeCertificateError
impl Debug for AttributeCertificateError
source§impl Display for AttributeCertificateError
impl Display for AttributeCertificateError
source§impl Error for AttributeCertificateError
impl Error for AttributeCertificateError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<AttributeCertificateError> for AttributeCertificateError
impl PartialEq<AttributeCertificateError> for AttributeCertificateError
source§fn eq(&self, other: &AttributeCertificateError) -> bool
fn eq(&self, other: &AttributeCertificateError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for AttributeCertificateError
impl Eq for AttributeCertificateError
impl StructuralEq for AttributeCertificateError
impl StructuralPartialEq for AttributeCertificateError
Auto Trait Implementations§
impl RefUnwindSafe for AttributeCertificateError
impl Send for AttributeCertificateError
impl Sync for AttributeCertificateError
impl Unpin for AttributeCertificateError
impl UnwindSafe for AttributeCertificateError
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