Skip to main content

MultiCodec

Struct MultiCodec 

Source
pub struct MultiCodec { /* private fields */ }
Expand description

A codec that combines multiple codecs.

Routes encode/decode to the appropriate codec based on format.

Implementations§

Source§

impl MultiCodec

Source

pub fn new() -> Self

Create an empty multi-codec.

Source

pub fn add(&mut self, codec: impl Codec + 'static)

Add a codec.

Source

pub fn with_json() -> Self

Create a multi-codec with the JSON codec included.

Source

pub fn standard() -> Self

The v1 transports, routed by explicit format. Each has its documented subset.

Trait Implementations§

Source§

impl Codec for MultiCodec

Source§

fn decode(&self, bytes: &Bytes, format: &Format) -> Result<Value, Error>

Decode raw bytes into a Value.
Source§

fn encode(&self, value: &Value, format: &Format) -> Result<Bytes, Error>

Encode a Value into raw bytes.
Source§

fn supports(&self, format: &Format) -> bool

Check if this codec supports a format.
Source§

impl Default for MultiCodec

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

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> 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 = !

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

fn try_from(value: U) -> Result<T, !>

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.