pub trait PondSchema {
type Presence: Serialize + DeserializeOwned + Send + Sync + 'static;
type Assigns: Serialize + DeserializeOwned + Send + Sync + 'static;
type JoinParams: Serialize + DeserializeOwned + Send + Sync + 'static;
}Required Associated Types§
type Presence: Serialize + DeserializeOwned + Send + Sync + 'static
type Assigns: Serialize + DeserializeOwned + Send + Sync + 'static
type JoinParams: Serialize + DeserializeOwned + Send + Sync + 'static
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".