IndexKeyPayload

Trait IndexKeyPayload 

Source
pub trait IndexKeyPayload:
    Sized
    + AsRef<Self::Content>
    + AsMut<Self::Content>
    + From<Self::Content> {
    type Content: IndexKeyContentSource<Self>;

    // Required method
    fn into_content(self) -> Self::Content;

    // Provided methods
    fn from_content(content: Self::Content) -> Self { ... }
    fn from_content_source<T: IndexKeyContentSource<Self>>(content: T) -> Self { ... }
}
Expand description

This trait is intended to be implemented by an explicit new type for the given { content: T } key of a particular index collection.

Required Associated Types§

Required Methods§

Source

fn into_content(self) -> Self::Content

Provided Methods§

Source

fn from_content(content: Self::Content) -> Self

Source

fn from_content_source<T: IndexKeyContentSource<Self>>(content: T) -> Self

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§