[][src]Struct bcder::int::Unsigned

pub struct Unsigned(_);

A BER encoded unsigned integer.

As integers are variable length in BER, this type is just a simple wrapper atop the underlying Bytes value containing the raw content. It guarantees that the wrapped integer is greater or equal to 0. This equals an integer defined as INTEGER (0..MAX) in ASN.1.

If you need a integer without any restrictions, you can use Integer. If you have even stricter range restrictions, you can also use the methods provided on the content types to decode into Rust’s primitive integer types such as u16.

BER Encoding

In BER, an INTEGER is encoded as a primitive value with the content octets providing a variable-length, big-endian, two‘s complement byte sequence of that integer. Thus, the most-significant bit of the first octet serves as the sign bit and, for an unsigned integer, has to be unset.

Methods

impl Unsigned[src]

pub fn take_from<S: Source>(cons: &mut Constructed<S>) -> Result<Self, S::Err>[src]

pub fn from_primitive<S: Source>(
    prim: &mut Primitive<S>
) -> Result<Self, S::Err>
[src]

pub fn u8_from_primitive<S: Source>(
    prim: &mut Primitive<S>
) -> Result<u8, S::Err>
[src]

pub fn u16_from_primitive<S: Source>(
    prim: &mut Primitive<S>
) -> Result<u16, S::Err>
[src]

pub fn u32_from_primitive<S: Source>(
    prim: &mut Primitive<S>
) -> Result<u32, S::Err>
[src]

pub fn u64_from_primitive<S: Source>(
    prim: &mut Primitive<S>
) -> Result<u64, S::Err>
[src]

pub fn u128_from_primitive<S: Source>(
    prim: &mut Primitive<S>
) -> Result<u128, S::Err>
[src]

Trait Implementations

impl<'a> PrimitiveContent for &'a Unsigned[src]

fn to_encoded_bytes(&self, mode: Mode) -> Bytes[src]

Encodes the value to bytes (useful when you need to sign a structure)

fn encode(self) -> Primitive<Self>[src]

Returns a value encoder for this content using the natural tag. Read more

fn encode_as(self, tag: Tag) -> Primitive<Self>[src]

Returns a value encoder for this content using the given tag. Read more

fn encode_ref(&self) -> Primitive<&Self>[src]

Returns a value encoder for a reference using the natural tag.

fn encode_ref_as(&self, tag: Tag) -> Primitive<&Self>[src]

Returns a value encoder for a reference using the given tag.

impl PartialOrd<Unsigned> for Unsigned[src]

impl AsRef<Integer> for Unsigned[src]

impl AsRef<Bytes> for Unsigned[src]

impl AsRef<[u8]> for Unsigned[src]

impl PartialEq<Unsigned> for Integer[src]

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

This method tests for !=.

impl PartialEq<Unsigned> for Unsigned[src]

impl From<u8> for Unsigned[src]

impl From<u16> for Unsigned[src]

impl From<u32> for Unsigned[src]

impl From<u64> for Unsigned[src]

impl From<u128> for Unsigned[src]

impl Clone for Unsigned[src]

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

Performs copy-assignment from source. Read more

impl Ord for Unsigned[src]

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

Compares and returns the maximum of two values. Read more

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

Compares and returns the minimum of two values. Read more

impl Eq for Unsigned[src]

impl Debug for Unsigned[src]

impl Hash for Unsigned[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for Unsigned

impl Sync for Unsigned

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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