Extensions

Trait Extensions 

Source
pub trait Extensions:
    Clone
    + Debug
    + for<'de> Deserialize<'de>
    + Serialize { }
Expand description

Super-trait defining trait bounds required by custom extensions types.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> Extensions for T
where T: Clone + Debug + for<'de> Deserialize<'de> + Serialize,

Blanket implementation of Extensions trait any type with the required bounds satisfied.