Struct boring_imp::asn1::Asn1BitString
source · pub struct Asn1BitString(/* private fields */);Expand description
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>§
Trait Implementations§
source§impl AsMut<Asn1BitStringRef> for Asn1BitString
impl AsMut<Asn1BitStringRef> for Asn1BitString
source§fn as_mut(&mut self) -> &mut Asn1BitStringRef
fn as_mut(&mut self) -> &mut Asn1BitStringRef
Converts this type into a mutable reference of the (usually inferred) input type.
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 BorrowMut<Asn1BitStringRef> for Asn1BitString
impl BorrowMut<Asn1BitStringRef> for Asn1BitString
source§fn borrow_mut(&mut self) -> &mut Asn1BitStringRef
fn borrow_mut(&mut self) -> &mut Asn1BitStringRef
Mutably borrows from an owned value. Read more
source§impl DerefMut for Asn1BitString
impl DerefMut for Asn1BitString
source§fn deref_mut(&mut self) -> &mut Asn1BitStringRef
fn deref_mut(&mut self) -> &mut Asn1BitStringRef
Mutably dereferences the value.
source§impl Drop for Asn1BitString
impl Drop for Asn1BitString
source§impl ForeignType for Asn1BitString
impl ForeignType for Asn1BitString
§type CType = asn1_string_st
type CType = asn1_string_st
The raw C type.
§type Ref = Asn1BitStringRef
type Ref = Asn1BitStringRef
The type representing a reference to this type.
source§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. Read more
source§fn as_ptr(&self) -> *mut ASN1_BIT_STRING
fn as_ptr(&self) -> *mut ASN1_BIT_STRING
Returns a raw pointer to the wrapped value.
source§impl Deref for Asn1BitString
impl Deref for Asn1BitString
§type Target = Asn1BitStringRef
type Target = Asn1BitStringRef
The resulting type after dereferencing.
source§fn deref(&self) -> &Asn1BitStringRef
fn deref(&self) -> &Asn1BitStringRef
Dereferences the value.
impl Send for Asn1BitString
impl Sync for Asn1BitString
Auto Trait Implementations§
impl RefUnwindSafe for Asn1BitString
impl Unpin for Asn1BitString
impl UnwindSafe for Asn1BitString
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