pub struct Asn1BitStringRef(/* private fields */);Expand description
A reference to an Asn1BitString.
Implementations§
Source§impl Asn1BitStringRef
impl Asn1BitStringRef
Sourcepub fn as_slice(&self) -> &[u8] ⓘ
pub fn as_slice(&self) -> &[u8] ⓘ
Returns the Asn1BitString as a slice.
This corresponds to ASN1_STRING_get0_data.
Sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Returns the number of bytes in the string.
This corresponds to ASN1_STRING_length.
Trait Implementations§
Source§impl AsRef<Asn1BitStringRef> for Asn1BitString
impl AsRef<Asn1BitStringRef> for Asn1BitString
Source§fn as_ref(&self) -> &Asn1BitStringRef
fn as_ref(&self) -> &Asn1BitStringRef
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Borrow<Asn1BitStringRef> for Asn1BitString
impl Borrow<Asn1BitStringRef> for Asn1BitString
Source§fn borrow(&self) -> &Asn1BitStringRef
fn borrow(&self) -> &Asn1BitStringRef
Immutably borrows from an owned value. Read more
Source§impl ForeignTypeRef for Asn1BitStringRef
impl ForeignTypeRef for Asn1BitStringRef
Source§type CType = ASN1_BIT_STRING
type CType = ASN1_BIT_STRING
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.