Struct oxygengine_script_flow::ast::Program [−][src]
pub struct Program { pub version: usize, pub name: String, pub types: Vec<Type>, pub traits: Vec<Trait>, pub functions: Vec<Function>, pub events: Vec<Event>, pub variables: Vec<Variable>, pub operations: Vec<Operation>, }
Fields
version: usize
name: String
types: Vec<Type>
traits: Vec<Trait>
functions: Vec<Function>
events: Vec<Event>
variables: Vec<Variable>
operations: Vec<Operation>
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
fn from_prefab_with_extras(
data: Value,
_named_entities: &HashMap<String, Entity, RandomState>,
_state_token: ID<()>
) -> Result<Self, PrefabError>
[src]Auto Trait Implementations
impl RefUnwindSafe for Program
impl UnwindSafe for Program
Blanket Implementations
impl<T> Any for T where
T: Any,
impl<T> Any for T where
T: Any,
pub fn get_type_id(&self) -> TypeId
Mutably borrows from an owned value. Read more
impl<T> TryDefault for T where
T: Default,
impl<T> TryDefault for T where
T: Default,
pub fn try_default() -> Result<T, String>
pub fn try_default() -> Result<T, String>
Tries to create the default.
fn unwrap_default() -> Self
fn unwrap_default() -> Self
Calls try_default
and panics on an error case.