pub type DistinguishedName = PayloadU16;
Aliased Type§
struct DistinguishedName(pub Vec<u8, Global>);
Fields§
§0: Vec<u8, Global>
Implementations§
source§impl PayloadU16
impl PayloadU16
pub fn new(bytes: Vec<u8>) -> PayloadU16
pub fn empty() -> PayloadU16
pub fn encode_slice(slice: &[u8], bytes: &mut Vec<u8>)
Trait Implementations§
source§impl Clone for PayloadU16
impl Clone for PayloadU16
source§fn clone(&self) -> PayloadU16
fn clone(&self) -> PayloadU16
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Codec for PayloadU16
impl Codec for PayloadU16
source§fn read(r: &mut Reader<'_>) -> Option<PayloadU16>
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>
fn get_encoding(&self) -> Vec<u8>
Convenience function to get the results of
encode()
.source§fn read_bytes(bytes: &[u8]) -> Option<Self>
fn read_bytes(bytes: &[u8]) -> Option<Self>
Read one of these from the front of
bytes
and
return it.source§impl Debug for PayloadU16
impl Debug for PayloadU16
source§impl PartialEq<PayloadU16> for PayloadU16
impl PartialEq<PayloadU16> for PayloadU16
source§fn eq(&self, other: &PayloadU16) -> bool
fn eq(&self, other: &PayloadU16) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.