Struct asn1::BitString [−][src]
pub struct BitString<'a> { /* fields omitted */ }Expand description
Represents an ASN.1 BIT STRING whose contents is borrowed.
Implementations
Returns a sequence of bytes representing the data in the BIT STRING. Padding bits will
always be 0.
Returns the number of padding bits. Will always be in [0, 8).
Returns whether the requested bit is set. Padding bits will always return false and asking for bits that exceed the length of the bit string will also return false.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for BitString<'a>
impl<'a> UnwindSafe for BitString<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more