[][src]Struct bcder::int::Integer

pub struct Integer(_);

A BER encoded integer.

As integers are variable length in BER, this type is just a simple wrapper atop the underlying Bytes value containing the raw content. A value of this type is a signed integer. If a value is defined as an unsigned integer, i.e., as INTEGER (0..MAX), you should use the sibling type Unsigned instead.

In addition to these two generic types, the content decoders also provide methods to parse integers into native integer types such as i8. If the range of such a type is obviously enough, you might want to consider using these methods instead.

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.

Methods

impl Integer[src]

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

Takes a single signed integer from the beginning of an encoded value.

This requires the next value in cons to be a primitive value with a correctly encoded signed integer.

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

Constructs a signed integer from the content of a primitive value.

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

Constructs an i8 from the content of a primitive value.

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

Constructs an i16 from the content of a primitive value.

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

Constructs an i32 from the content of a primitive value.

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

Constructs an i64 from the content of a primitive value.

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

Constructs an i128 from the content of a primitive value.

pub fn into_bytes(self) -> Bytes[src]

Trades the integer into a bytes value with the raw content octets.

pub fn as_slice(&self) -> &[u8][src]

Returns a bytes slice with the raw content.

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

Returns whether the number is zero.

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

Returns whether the integer is positive.

Also returns false if the number is zero.

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

Returns whether the integer is negative.

Also returns false if the number is zero.

Trait Implementations

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

impl From<i8> for Integer[src]

impl From<i16> for Integer[src]

impl From<i32> for Integer[src]

impl From<i64> for Integer[src]

impl From<i128> for Integer[src]

impl From<u8> for Integer[src]

impl From<u16> for Integer[src]

impl From<u32> for Integer[src]

impl From<u64> for Integer[src]

impl From<u128> for Integer[src]

impl Clone for Integer[src]

impl PartialOrd<Integer> for Integer[src]

impl AsRef<Bytes> for Integer[src]

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

impl AsRef<Integer> for Unsigned[src]

impl Eq for Integer[src]

impl Ord for Integer[src]

impl PartialEq<Integer> for Integer[src]

impl PartialEq<Unsigned> for Integer[src]

impl Debug for Integer[src]

impl Hash for Integer[src]

Auto Trait Implementations

impl Unpin for Integer

impl Sync for Integer

impl Send for Integer

impl UnwindSafe for Integer

impl RefUnwindSafe for Integer

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.

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.

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

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

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