Enum simple_asn1::ASN1EncodeErr
source · [−]pub enum ASN1EncodeErr {
ObjectIdentHasTooFewFields,
ObjectIdentVal1TooLarge,
ObjectIdentVal2TooLarge,
}
Expand description
An error that can arise encoding ASN.1 primitive blocks.
Variants
ObjectIdentHasTooFewFields
ObjectIdentVal1TooLarge
ObjectIdentVal2TooLarge
Trait Implementations
sourceimpl Clone for ASN1EncodeErr
impl Clone for ASN1EncodeErr
sourcefn clone(&self) -> ASN1EncodeErr
fn clone(&self) -> ASN1EncodeErr
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ASN1EncodeErr
impl Debug for ASN1EncodeErr
sourceimpl Display for ASN1EncodeErr
impl Display for ASN1EncodeErr
sourceimpl Error for ASN1EncodeErr
impl Error for ASN1EncodeErr
sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourcefn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎 Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
sourceimpl PartialEq<ASN1EncodeErr> for ASN1EncodeErr
impl PartialEq<ASN1EncodeErr> for ASN1EncodeErr
impl StructuralPartialEq for ASN1EncodeErr
Auto Trait Implementations
impl RefUnwindSafe for ASN1EncodeErr
impl Send for ASN1EncodeErr
impl Sync for ASN1EncodeErr
impl Unpin for ASN1EncodeErr
impl UnwindSafe for ASN1EncodeErr
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more