pub struct EventPageCondition {
pub switch2_valid: bool,
pub self_switch_ch: String,
pub switch1_id: i32,
pub switch1_valid: bool,
pub variable_value: i32,
pub self_switch_valid: bool,
pub variable_id: i32,
pub variable_valid: bool,
pub switch2_id: i32,
}
Fields§
§switch2_valid: bool
§self_switch_ch: String
§switch1_id: i32
§switch1_valid: bool
§variable_value: i32
§self_switch_valid: bool
§variable_id: i32
§variable_valid: bool
§switch2_id: i32
Trait Implementations§
Source§impl Debug for EventPageCondition
impl Debug for EventPageCondition
Source§impl<'de> Deserialize<'de> for EventPageCondition
impl<'de> Deserialize<'de> for EventPageCondition
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> FromValue<'a> for EventPageCondition
impl<'a> FromValue<'a> for EventPageCondition
Source§fn from_value(
ctx: &FromValueContext<'a>,
value: &Value,
) -> Result<Self, FromValueError>
fn from_value( ctx: &FromValueContext<'a>, value: &Value, ) -> Result<Self, FromValueError>
Create this type from the given value from the [
ValueArena
]. Read moreSource§impl IntoValue for EventPageCondition
impl IntoValue for EventPageCondition
Source§fn into_value(
self,
arena: &mut ValueArena,
) -> Result<ValueHandle, IntoValueError>
fn into_value( self, arena: &mut ValueArena, ) -> Result<ValueHandle, IntoValueError>
Turn this type into a Ruby Value.
Auto Trait Implementations§
impl Freeze for EventPageCondition
impl RefUnwindSafe for EventPageCondition
impl Send for EventPageCondition
impl Sync for EventPageCondition
impl Unpin for EventPageCondition
impl UnwindSafe for EventPageCondition
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more