Struct amfnengine::engine::elem_template_event::ElemTemplateEvent[]

pub struct ElemTemplateEvent { /* fields omitted */ }

Implementations

impl ElemTemplateEvent

The template event element implementation.

pub fn new(name_param: &str) -> ElemTemplateEvent

Create and return a new template event.

Arguments

  • name_param - Name of template event.

Return

  • See description.

pub fn name(&self) -> &str

Get the name.

Return

  • See description.

pub fn list_event(&self) -> &ListEvent

Get the list event.

Return

  • See description.

pub fn list_event_mut(&mut self) -> &mut ListEvent

Get the mutable list event.

Return

  • See description.

pub fn initial_event(&self) -> bool

Get the initial event.

Return

  • See description.

pub fn set_name(&mut self, name_param: &str)

Set the name.

Arguments

  • name_param - See description.

pub fn set_list_event(&mut self, list_event_param: ListEvent)

Set the list event.

Arguments

  • list_event_param - See description.

pub fn set_initial_event(&mut self, initial_event_param: bool)

Set the initial event.

Arguments

  • initial_event_param - See description.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.