[][src]Struct iso7816_tlv::simple::Tlv

pub struct Tlv { /* fields omitted */ }

SIMPLE-TLV data object representation.

Each SIMPLE-TLV data object shall consist of two or three consecutive fields: a mandatory tag field, a mandatory length field and a conditional value field

Methods

impl Tlv[src]

pub fn new(tag: Tag, value: Value) -> Result<Self, TlvError>[src]

Create a SIMPLE-TLV data object from valid tag and value. A value has a maximum size of 65_535 bytes. Otherwise this fonction fails with TlvError::InvalidLength.

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

serializes self into a byte vector.

pub fn parse(input: &[u8]) -> (Result<Self, TlvError>, &[u8])[src]

Parses a byte array into a SIMPLE-TLV structure. This also returns the unprocessed data.

pub fn from_bytes(input: &[u8]) -> Result<Self, TlvError>[src]

Parses a byte array into a SIMPLE-TLV structure. Input must exactly match a SIMPLE-TLV object.

Trait Implementations

impl Clone for Tlv[src]

impl PartialEq<Tlv> for Tlv[src]

impl Debug for Tlv[src]

Auto Trait Implementations

impl Send for Tlv

impl Unpin for Tlv

impl Sync for Tlv

impl UnwindSafe for Tlv

impl RefUnwindSafe for Tlv

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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]