pub enum AttributeCertificateError {
OutOfBounds,
InvalidSize,
InvalidCertificateSize {
size: u32,
},
}
Expand description
Error type for AttributeCertificateIterator
.
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.
InvalidCertificateSize
The size of an entry in the certificate table is invalid.
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
Available on crate feature std
only.
impl Error for AttributeCertificateError
Available on crate feature
std
only.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()
impl Copy for AttributeCertificateError
impl Eq for AttributeCertificateError
impl StructuralPartialEq for AttributeCertificateError
Auto Trait Implementations§
impl Freeze for AttributeCertificateError
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