Struct tokio_serde::formats::Json

source ·
pub struct Json<Item, SinkItem> { /* private fields */ }
Available on crate feature json only.
Expand description

JSON codec using serde_json crate.

Trait Implementations§

source§

impl<Item, SinkItem> Debug for Json<Item, SinkItem>

source§

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

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

impl<Item, SinkItem> Default for Json<Item, SinkItem>

source§

fn default() -> Self

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

impl<Item, SinkItem> Deserializer<Item> for Json<Item, SinkItem>
where for<'a> Item: Deserialize<'a>,

§

type Error = Error

source§

fn deserialize( self: Pin<&mut Self>, src: &BytesMut ) -> Result<Item, Self::Error>

Deserializes a value from buf Read more
source§

impl<Item, SinkItem> Serializer<SinkItem> for Json<Item, SinkItem>
where SinkItem: Serialize,

§

type Error = Error

source§

fn serialize( self: Pin<&mut Self>, item: &SinkItem ) -> Result<Bytes, Self::Error>

Serializes item into a new buffer Read more

Auto Trait Implementations§

§

impl<Item, SinkItem> RefUnwindSafe for Json<Item, SinkItem>
where Item: RefUnwindSafe, SinkItem: RefUnwindSafe,

§

impl<Item, SinkItem> Send for Json<Item, SinkItem>
where Item: Send, SinkItem: Send,

§

impl<Item, SinkItem> Sync for Json<Item, SinkItem>
where Item: Sync, SinkItem: Sync,

§

impl<Item, SinkItem> Unpin for Json<Item, SinkItem>
where Item: Unpin, SinkItem: Unpin,

§

impl<Item, SinkItem> UnwindSafe for Json<Item, SinkItem>
where Item: UnwindSafe, SinkItem: UnwindSafe,

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>,

§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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.