pub type PresharedKeyBinder = PayloadU8;

Aliased Type§

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

Fields§

§0: Vec<u8, Global>

Implementations§

source§

impl PayloadU8

source

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

source

pub fn empty() -> PayloadU8

source

pub fn into_inner(self) -> Vec<u8>

Trait Implementations§

source§

impl Clone for PayloadU8

source§

fn clone(&self) -> PayloadU8

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 PayloadU8

source§

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

Encode yourself by appending onto bytes.
source§

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

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 PayloadU8

source§

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

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

impl From<Okm<'_, PayloadU8Len>> for PayloadU8

source§

fn from(okm: Okm<'_, PayloadU8Len>) -> Self

Converts to this type from the input type.
source§

impl PartialEq<PayloadU8> for PayloadU8

source§

fn eq(&self, other: &PayloadU8) -> 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 PayloadU8