Trait FromMeta

Source
pub trait FromMeta: Sized {
    type Input;

    // Required method
    fn from_meta(meta: &Self::Input) -> Self;
}

Required Associated Types§

Required Methods§

Source

fn from_meta(meta: &Self::Input) -> 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.

Implementations on Foreign Types§

Source§

impl FromMeta for Option<Column>

Source§

type Input = ColumnMeta

Source§

fn from_meta(meta: &Self::Input) -> Self

Source§

impl FromMeta for Table

Implementors§