Skip to main content

WebLeaf

Trait WebLeaf 

Source
pub trait WebLeaf:
    Clone
    + Send
    + Sync
    + Serialize
    + ToSchema
    + PartialSchema { }

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> WebLeaf for T
where T: Clone + Send + Sync + Serialize + for<'de> Deserialize<'de> + ToSchema + PartialSchema,