Struct openssl::asn1::Asn1BitString [−]
pub struct Asn1BitString(_);
Sequence of bytes
Asn1BitString is used in x509
certificates for the signature.
The bit string acts as a collection of bytes.
Methods from Deref<Target = Asn1BitStringRef>
pub fn as_slice(&self) -> &[u8]
[src]
pub fn as_slice(&self) -> &[u8]
Returns the Asn1BitString as a slice
pub fn len(&self) -> usize
[src]
pub fn len(&self) -> usize
Length of Asn1BitString in number of bytes.
Trait Implementations
impl ForeignType for Asn1BitString
impl ForeignType for Asn1BitString
type CType = ASN1_BIT_STRING
The raw C type.
type Ref = Asn1BitStringRef
The type representing a reference to this type.
unsafe fn from_ptr(ptr: *mut ASN1_BIT_STRING) -> Asn1BitString
unsafe fn from_ptr(ptr: *mut ASN1_BIT_STRING) -> Asn1BitString
Constructs an instance of this type from its raw type.
fn as_ptr(&self) -> *mut ASN1_BIT_STRING
fn as_ptr(&self) -> *mut ASN1_BIT_STRING
Returns a raw pointer to the wrapped value.
impl Drop for Asn1BitString
impl Drop for Asn1BitString
impl Deref for Asn1BitString
impl Deref for Asn1BitString
type Target = Asn1BitStringRef
The resulting type after dereferencing.
fn deref(&self) -> &Asn1BitStringRef
fn deref(&self) -> &Asn1BitStringRef
Dereferences the value.
impl DerefMut for Asn1BitString
impl DerefMut for Asn1BitString
fn deref_mut(&mut self) -> &mut Asn1BitStringRef
fn deref_mut(&mut self) -> &mut Asn1BitStringRef
Mutably dereferences the value.
impl Borrow<Asn1BitStringRef> for Asn1BitString
impl Borrow<Asn1BitStringRef> for Asn1BitString
fn borrow(&self) -> &Asn1BitStringRef
fn borrow(&self) -> &Asn1BitStringRef
Immutably borrows from an owned value. Read more
impl AsRef<Asn1BitStringRef> for Asn1BitString
impl AsRef<Asn1BitStringRef> for Asn1BitString
fn as_ref(&self) -> &Asn1BitStringRef
fn as_ref(&self) -> &Asn1BitStringRef
Performs the conversion.
impl Send for Asn1BitString
[src]
impl Send for Asn1BitString
impl Sync for Asn1BitString
[src]
impl Sync for Asn1BitString