pub struct GameSTriggerDialogControlEvent {
pub m_control_id: Int32,
pub m_event_type: Int32,
pub m_event_data: MEventData,
}Fields§
§m_control_id: Int32§m_event_type: Int32§m_event_data: MEventDataImplementations§
Source§impl GameSTriggerDialogControlEvent
impl GameSTriggerDialogControlEvent
pub fn parse_m_control_id( input: (&[u8], usize), ) -> S2ProtoResult<(&[u8], usize), Int32>
pub fn parse_m_event_type( input: (&[u8], usize), ) -> S2ProtoResult<(&[u8], usize), Int32>
pub fn parse_m_event_data( input: (&[u8], usize), ) -> S2ProtoResult<(&[u8], usize), MEventData>
pub fn parse(input: (&[u8], usize)) -> S2ProtoResult<(&[u8], usize), Self>
Trait Implementations§
Source§impl Clone for GameSTriggerDialogControlEvent
impl Clone for GameSTriggerDialogControlEvent
Source§fn clone(&self) -> GameSTriggerDialogControlEvent
fn clone(&self) -> GameSTriggerDialogControlEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for GameSTriggerDialogControlEvent
impl PartialEq for GameSTriggerDialogControlEvent
Source§fn eq(&self, other: &GameSTriggerDialogControlEvent) -> bool
fn eq(&self, other: &GameSTriggerDialogControlEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GameSTriggerDialogControlEvent
Auto Trait Implementations§
impl Freeze for GameSTriggerDialogControlEvent
impl RefUnwindSafe for GameSTriggerDialogControlEvent
impl Send for GameSTriggerDialogControlEvent
impl Sync for GameSTriggerDialogControlEvent
impl Unpin for GameSTriggerDialogControlEvent
impl UnsafeUnpin for GameSTriggerDialogControlEvent
impl UnwindSafe for GameSTriggerDialogControlEvent
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more