TaggedValue

Struct TaggedValue 

Source
pub struct TaggedValue<V> { /* private fields */ }
Expand description

SIMPLE-TLV data object.

Implementations§

Source§

impl<V> TaggedValue<V>

Source

pub fn new(tag: Tag, value: V) -> Self

Source

pub fn tag(&self) -> Tag

Source§

impl<'a> TaggedValue<Slice<'a>>

Source

pub fn from(tag: Tag, slice: &'a [u8]) -> Result<Self>

Create a new tagged slice, checking lengths.

Source

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

Borrow the inner byte slice.

Source

pub fn length(&self) -> Length

Get the length of the inner byte slice.

Source

pub fn is_empty(&self) -> bool

Is the inner byte slice empty?

Source

pub fn decode_nested<F, T>(&self, f: F) -> Result<T>
where F: FnOnce(&mut Decoder<'a>) -> Result<T>,

Decode nested values, creating a new Decoder for the data contained in the sequence’s body and passing it to the provided FnOnce.

Trait Implementations§

Source§

impl<V: Clone> Clone for TaggedValue<V>

Source§

fn clone(&self) -> TaggedValue<V>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<V: Debug> Debug for TaggedValue<V>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<'a, E> Encodable for TaggedValue<&'a E>
where E: Encodable,

Source§

fn encoded_length(&self) -> Result<Length>

Compute the length of this value in bytes when encoded as SIMPLE-TLV
Source§

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

Encode this value as SIMPLE-TLV using the provided Encoder.
Source§

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

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

impl<V: PartialEq> PartialEq for TaggedValue<V>

Source§

fn eq(&self, other: &TaggedValue<V>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<V: Copy> Copy for TaggedValue<V>

Source§

impl<V: Eq> Eq for TaggedValue<V>

Source§

impl<V> StructuralPartialEq for TaggedValue<V>

Auto Trait Implementations§

§

impl<V> Freeze for TaggedValue<V>
where V: Freeze,

§

impl<V> RefUnwindSafe for TaggedValue<V>
where V: RefUnwindSafe,

§

impl<V> Send for TaggedValue<V>
where V: Send,

§

impl<V> Sync for TaggedValue<V>
where V: Sync,

§

impl<V> Unpin for TaggedValue<V>
where V: Unpin,

§

impl<V> UnwindSafe for TaggedValue<V>
where V: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.