Skip to main content

IExpSequence

Trait IExpSequence 

Source
pub trait IExpSequence: IProcInst {
    // Provided methods
    fn m_unit(self) -> Unit { ... }
    fn set_m_unit(self, value: Unit) { ... }
    fn m_exp(self) -> i32 { ... }
    fn set_m_exp(self, value: i32) { ... }
    fn m_skill_point(self) -> i32 { ... }
    fn set_m_skill_point(self, value: i32) { ... }
    fn m_is_exp_se(self) -> bool { ... }
    fn set_m_is_exp_se(self, value: bool) { ... }
    fn m_window(self) -> ExpSetter { ... }
    fn set_m_window(self, value: ExpSetter) { ... }
}

Provided Methods§

Source

fn m_unit(self) -> Unit

Source

fn set_m_unit(self, value: Unit)

Source

fn m_exp(self) -> i32

Source

fn set_m_exp(self, value: i32)

Source

fn m_skill_point(self) -> i32

Source

fn set_m_skill_point(self, value: i32)

Source

fn m_is_exp_se(self) -> bool

Source

fn set_m_is_exp_se(self, value: bool)

Source

fn m_window(self) -> ExpSetter

Source

fn set_m_window(self, value: ExpSetter)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§