[]Struct oxygengine::core::ignite::types::IgniteTypeDefinition

pub struct IgniteTypeDefinition {
    pub namespace: String,
    pub generic_args: Vec<String>,
    pub variant: IgniteTypeVariant,
    pub meta: HashMap<String, IgniteAttribMeta, RandomState>,
    pub is_proxy: bool,
}

Fields

namespace: Stringgeneric_args: Vec<String>variant: IgniteTypeVariantmeta: HashMap<String, IgniteAttribMeta, RandomState>is_proxy: bool

Implementations

impl IgniteTypeDefinition

pub fn name(&self) -> String

pub fn referenced(&self) -> HashSet<String, RandomState>

Trait Implementations

impl Debug for IgniteTypeDefinition

impl<'de> Deserialize<'de> for IgniteTypeDefinition

impl Hash for IgniteTypeDefinition

impl Serialize for IgniteTypeDefinition

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Event for T where
    T: Send + Sync + 'static, 

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Resource for T where
    T: Any, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,