[][src]Struct avm1_types::actions::DefineFunction2

pub struct DefineFunction2 {
    pub name: String,
    pub register_count: u8,
    pub preload_this: bool,
    pub suppress_this: bool,
    pub preload_arguments: bool,
    pub suppress_arguments: bool,
    pub preload_super: bool,
    pub suppress_super: bool,
    pub preload_root: bool,
    pub preload_parent: bool,
    pub preload_global: bool,
    pub parameters: Vec<Parameter>,
    pub body_size: u16,
}

Fields

name: Stringregister_count: u8preload_this: boolsuppress_this: boolpreload_arguments: boolsuppress_arguments: boolpreload_super: boolsuppress_super: boolpreload_root: boolpreload_parent: boolpreload_global: boolparameters: Vec<Parameter>body_size: u16

Trait Implementations

impl Eq for DefineFunction2[src]

impl PartialEq<DefineFunction2> for DefineFunction2[src]

impl Debug for DefineFunction2[src]

impl Serialize for DefineFunction2[src]

impl<'de> Deserialize<'de> for DefineFunction2[src]

Auto Trait Implementations

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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