Type Alias SupportedSignatureSchemes

Source
pub type SupportedSignatureSchemes = Vec<SignatureScheme>;

Aliased Type§

struct SupportedSignatureSchemes { /* private fields */ }

Trait Implementations§

Source§

impl Codec for SupportedSignatureSchemes

Source§

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

Encode yourself by appending onto bytes.
Source§

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

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.