Skip to main content

WebSortField

Trait WebSortField 

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