pub struct EventPageCondition {Show 13 fields
pub switch1_valid: bool,
pub switch2_valid: bool,
pub variable_valid: bool,
pub self_switch_valid: bool,
pub item_valid: bool,
pub actor_valid: bool,
pub switch1_id: i32,
pub switch2_id: i32,
pub variable_id: i32,
pub variable_value: i32,
pub self_switch_ch: String,
pub item_id: i32,
pub actor_id: i32,
}
Fields§
§switch1_valid: bool
§switch2_valid: bool
§variable_valid: bool
§self_switch_valid: bool
§item_valid: bool
§actor_valid: bool
§switch1_id: i32
§switch2_id: i32
§variable_id: i32
§variable_value: i32
§self_switch_ch: String
§item_id: i32
§actor_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<'_>,
value: &'a Value,
) -> Result<Self, FromValueError>
fn from_value( ctx: &FromValueContext<'_>, value: &'a 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