pub struct UpdateTrigger {
pub id: LegacyId,
pub int_params: Vec<i32>,
pub string_param: String,
pub stuff_ids: Vec<LegacyId>,
pub furni_sources: Vec<LegacyId>,
pub user_sources: Vec<LegacyId>,
}
Fields§
§id: LegacyId
§int_params: Vec<i32>
§string_param: String
§stuff_ids: Vec<LegacyId>
§furni_sources: Vec<LegacyId>
§user_sources: Vec<LegacyId>
Trait Implementations§
Source§impl BaseParser for UpdateTrigger
impl BaseParser for UpdateTrigger
fn parse(packet: &mut HPacket) -> Self
fn append_to_packet(&self, packet: &mut HPacket)
fn get_direction() -> HDirection
fn get_packet_name() -> String
Source§impl Clone for UpdateTrigger
impl Clone for UpdateTrigger
Source§fn clone(&self) -> UpdateTrigger
fn clone(&self) -> UpdateTrigger
Returns a copy 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 Debug for UpdateTrigger
impl Debug for UpdateTrigger
Source§impl Default for UpdateTrigger
impl Default for UpdateTrigger
Source§fn default() -> UpdateTrigger
fn default() -> UpdateTrigger
Returns the “default value” for a type. Read more
Source§impl PacketVariable for UpdateTrigger
impl PacketVariable for UpdateTrigger
Source§impl PartialEq for UpdateTrigger
impl PartialEq for UpdateTrigger
impl StructuralPartialEq for UpdateTrigger
Auto Trait Implementations§
impl Freeze for UpdateTrigger
impl RefUnwindSafe for UpdateTrigger
impl Send for UpdateTrigger
impl Sync for UpdateTrigger
impl Unpin for UpdateTrigger
impl UnwindSafe for UpdateTrigger
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