[go: up one dir, main page]

Struct der::BitString[][src]

pub struct BitString<'a> { /* fields omitted */ }
Expand description

ASN.1 BIT STRING type.

Implementations

impl<'a> BitString<'a>[src]

pub fn new(bytes: &'a [u8]) -> Result<Self>[src]

Create a new ASN.1 BIT STRING from a byte slice.

pub fn as_bytes(&self) -> &'a [u8][src]

Borrow the inner byte slice.

pub fn len(&self) -> Length[src]

Get the length of the inner byte slice (sans leading 0 byte).

pub fn is_empty(&self) -> bool[src]

Is the inner byte slice empty?

Trait Implementations

impl AsRef<[u8]> for BitString<'_>[src]

fn as_ref(&self) -> &[u8][src]

Performs the conversion.

impl<'a> Clone for BitString<'a>[src]

fn clone(&self) -> BitString<'a>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for BitString<'a>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<'a> Encodable for BitString<'a>[src]

fn encoded_len(&self) -> Result<Length>[src]

Compute the length of this value in bytes when encoded as ASN.1 DER.

fn encode(&self, encoder: &mut Encoder<'_>) -> Result<()>[src]

Encode this value as ASN.1 DER using the provided Encoder.

fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8]>[src]

Encode this value to the provided byte slice, returning a sub-slice containing the encoded message. Read more

fn encode_to_vec(&self, buf: &mut Vec<u8>) -> Result<Length>[src]

This is supported on crate feature alloc only.

Encode this message as ASN.1 DER, appending it to the provided byte vector. Read more

fn to_vec(&self) -> Result<Vec<u8>>[src]

This is supported on crate feature alloc only.

Serialize this message as a byte vector.

impl<'a> From<&'_ BitString<'a>> for BitString<'a>[src]

fn from(value: &BitString<'a>) -> BitString<'a>[src]

Performs the conversion.

impl<'a> From<BitString<'a>> for Any<'a>[src]

fn from(bit_string: BitString<'a>) -> Any<'a>[src]

Performs the conversion.

impl<'a> Ord for BitString<'a>[src]

fn cmp(&self, other: &BitString<'a>) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl<'a> PartialEq<BitString<'a>> for BitString<'a>[src]

fn eq(&self, other: &BitString<'a>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &BitString<'a>) -> bool[src]

This method tests for !=.

impl<'a> PartialOrd<BitString<'a>> for BitString<'a>[src]

fn partial_cmp(&self, other: &BitString<'a>) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<'a> Tagged for BitString<'a>[src]

const TAG: Tag[src]

ASN.1 tag

impl<'a> TryFrom<Any<'a>> for BitString<'a>[src]

type Error = Error

The type returned in the event of a conversion error.

fn try_from(any: Any<'a>) -> Result<BitString<'a>>[src]

Performs the conversion.

impl<'a> Copy for BitString<'a>[src]

impl<'a> Eq for BitString<'a>[src]

impl<'a> StructuralEq for BitString<'a>[src]

impl<'a> StructuralPartialEq for BitString<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for BitString<'a>

impl<'a> Send for BitString<'a>

impl<'a> Sync for BitString<'a>

impl<'a> Unpin for BitString<'a>

impl<'a> UnwindSafe for BitString<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.