pub type DistinguishedName = PayloadU16;

Aliased Type§

struct DistinguishedName(pub Vec<u8, Global>);

Fields§

§0: Vec<u8, Global>

Implementations§

source§

impl PayloadU16

source

pub fn new(bytes: Vec<u8>) -> PayloadU16

source

pub fn empty() -> PayloadU16

source

pub fn encode_slice(slice: &[u8], bytes: &mut Vec<u8>)

Trait Implementations§

source§

impl Clone for PayloadU16

source§

fn clone(&self) -> PayloadU16

Returns a copy 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 Codec for PayloadU16

source§

fn encode(&self, bytes: &mut Vec<u8>)

Encode yourself by appending onto bytes.
source§

fn read(r: &mut Reader<'_>) -> Option<PayloadU16>

Decode yourself by fiddling with the Reader. Return Some if it worked, None if not.
source§

fn get_encoding(&self) -> Vec<u8>

Convenience function to get the results of encode().
source§

fn read_bytes(bytes: &[u8]) -> Option<Self>

Read one of these from the front of bytes and return it.
source§

impl Debug for PayloadU16

source§

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

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

impl PartialEq<PayloadU16> for PayloadU16

source§

fn eq(&self, other: &PayloadU16) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for PayloadU16