[][src]Enum brawllib_rs::wiird::IfTest

pub enum IfTest {
    IsEqual {
        use_base_address: bool,
        address: u32,
        value: u32,
    },
    IsNotEqual {
        use_base_address: bool,
        address: u32,
        value: u32,
    },
    IsGreaterThan {
        use_base_address: bool,
        address: u32,
        value: u32,
    },
    IsLessThan {
        use_base_address: bool,
        address: u32,
        value: u32,
    },
    IsEqualMask {
        use_base_address: bool,
        address: u32,
        lhs_mask: u16,
        rhs_value: u16,
    },
    IsNotEqualMask {
        use_base_address: bool,
        address: u32,
        lhs_mask: u16,
        rhs_value: u16,
    },
    IsGreaterThanMask {
        use_base_address: bool,
        address: u32,
        lhs_mask: u16,
        rhs_value: u16,
    },
    IsLessThanMask {
        use_base_address: bool,
        address: u32,
        lhs_mask: u16,
        rhs_value: u16,
    },
}

Variants

IsEqual

Fields of IsEqual

use_base_address: booladdress: u32value: u32
IsNotEqual

Fields of IsNotEqual

use_base_address: booladdress: u32value: u32
IsGreaterThan

Fields of IsGreaterThan

use_base_address: booladdress: u32value: u32
IsLessThan

Fields of IsLessThan

use_base_address: booladdress: u32value: u32
IsEqualMask

Fields of IsEqualMask

use_base_address: booladdress: u32lhs_mask: u16rhs_value: u16
IsNotEqualMask

Fields of IsNotEqualMask

use_base_address: booladdress: u32lhs_mask: u16rhs_value: u16
IsGreaterThanMask

Fields of IsGreaterThanMask

use_base_address: booladdress: u32lhs_mask: u16rhs_value: u16
IsLessThanMask

Fields of IsLessThanMask

use_base_address: booladdress: u32lhs_mask: u16rhs_value: u16

Trait Implementations

impl Clone for IfTest[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for IfTest[src]

impl Serialize for IfTest[src]

Auto Trait Implementations

impl Send for IfTest

impl Sync for IfTest

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]