Json

Struct Json 

Source
pub struct Json<T>(pub T);
Expand description

Json is a type wrapper to implement Footer for all types that implement serde_core::Serialize and serde_core::Deserialize

When using a JSON footer, you should be aware of the risks of parsing user provided JSON. https://github.com/paseto-standard/paseto-spec/blob/master/docs/02-Implementation-Guide/01-Payload-Processing.md#storing-json-in-the-footer.

Currently, this uses serde_json internally, which by default offers a stack-overflow protection limit on parsing JSON. You should also parse into a known struct layout, and avoid arbitrary key-value mappings.

If you need stricter checks, you can make your own Footer encodings that give access to the bytes before the footer is decoded.

Tuple Fields§

§0: T

Trait Implementations§

Source§

impl<T: Default> Default for Json<T>

Source§

fn default() -> Json<T>

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

fn encode( &self, writer: impl WriteBytes, ) -> Result<(), Box<dyn Error + Send + Sync>>

Encode the footer to bytes
Source§

fn decode(footer: &[u8]) -> Result<Self, Box<dyn Error + Send + Sync>>

Decode the footer from bytes
Source§

impl<M: Serialize + DeserializeOwned> Payload for Json<M>

Source§

const SUFFIX: &'static str = ""

JSON is the standard payload and requires no version suffix

Source§

fn encode( self, writer: impl WriteBytes, ) -> Result<(), Box<dyn Error + Send + Sync>>

Encode the message
Source§

fn decode(payload: &[u8]) -> Result<Self, Box<dyn Error + Send + Sync>>

Decode the message

Auto Trait Implementations§

§

impl<T> Freeze for Json<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Json<T>
where T: RefUnwindSafe,

§

impl<T> Send for Json<T>
where T: Send,

§

impl<T> Sync for Json<T>
where T: Sync,

§

impl<T> Unpin for Json<T>
where T: Unpin,

§

impl<T> UnwindSafe for Json<T>
where T: 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>,

Source§

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

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.