pub struct Asn1EnumeratedRef(/* private fields */);Expand description
A reference to an Asn1Enumerated.
Implementations§
Source§impl Asn1EnumeratedRef
impl Asn1EnumeratedRef
Sourcepub fn get_i64(&self) -> Result<i64, ErrorStack>
pub fn get_i64(&self) -> Result<i64, ErrorStack>
Get the value, if it fits in the required bounds.
This corresponds to ASN1_ENUMERATED_get_int64.
Trait Implementations§
Source§impl AsRef<Asn1EnumeratedRef> for Asn1Enumerated
impl AsRef<Asn1EnumeratedRef> for Asn1Enumerated
Source§fn as_ref(&self) -> &Asn1EnumeratedRef
fn as_ref(&self) -> &Asn1EnumeratedRef
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Borrow<Asn1EnumeratedRef> for Asn1Enumerated
impl Borrow<Asn1EnumeratedRef> for Asn1Enumerated
Source§fn borrow(&self) -> &Asn1EnumeratedRef
fn borrow(&self) -> &Asn1EnumeratedRef
Immutably borrows from an owned value. Read more
Source§impl ForeignTypeRef for Asn1EnumeratedRef
impl ForeignTypeRef for Asn1EnumeratedRef
Source§type CType = ASN1_ENUMERATED
type CType = ASN1_ENUMERATED
The raw C type.
Source§unsafe fn from_ptr<'a>(ptr: *mut Self::CType) -> &'a Self
unsafe fn from_ptr<'a>(ptr: *mut Self::CType) -> &'a Self
Constructs a shared instance of this type from its raw type.
Source§unsafe fn from_ptr_mut<'a>(ptr: *mut Self::CType) -> &'a mut Self
unsafe fn from_ptr_mut<'a>(ptr: *mut Self::CType) -> &'a mut Self
Constructs a mutable reference of this type from its raw type.