Type Alias oxygengine::prelude::Meta

source ·
pub type Meta = Option<Box<dyn Any + Sync + Send, Global>>;

Aliased Type§

enum Meta {
    None,
    Some(Box<dyn Any + Sync + Send, Global>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Box<dyn Any + Sync + Send, Global>)

Some value of type T.

Trait Implementations§

§

impl<T> Query for Option<T>where T: Query,

§

type Item<'q> = Option<<T as Query>::Item<'q>>

Type of results yielded by the query Read more
§

impl<T> QueryShared for Option<T>where T: QueryShared,

source§

impl<T> ResAccess for Option<T>where T: ResAccess,