Struct openssl::asn1::Asn1BitStringRef
source · 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
§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.
impl Send for Asn1BitStringRef
impl Sync for Asn1BitStringRef
Auto Trait Implementations§
impl !Freeze for Asn1BitStringRef
impl !RefUnwindSafe for Asn1BitStringRef
impl Unpin for Asn1BitStringRef
impl UnwindSafe for Asn1BitStringRef
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