pub struct UpdateCondition {
pub id: LegacyId,
pub int_params: Vec<i32>,
pub string_param: String,
pub stuff_ids: Vec<LegacyId>,
pub quantifier: i32,
pub furni_sources: Vec<LegacyId>,
pub user_sources: Vec<LegacyId>,
}
Fields§
§id: LegacyId
§int_params: Vec<i32>
§string_param: String
§stuff_ids: Vec<LegacyId>
§quantifier: i32
§furni_sources: Vec<LegacyId>
§user_sources: Vec<LegacyId>
Trait Implementations§
source§impl BaseParser for UpdateCondition
impl BaseParser for UpdateCondition
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 UpdateCondition
impl Clone for UpdateCondition
source§fn clone(&self) -> UpdateCondition
fn clone(&self) -> UpdateCondition
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 UpdateCondition
impl Debug for UpdateCondition
source§impl Default for UpdateCondition
impl Default for UpdateCondition
source§fn default() -> UpdateCondition
fn default() -> UpdateCondition
Returns the “default value” for a type. Read more
source§impl PacketVariable for UpdateCondition
impl PacketVariable for UpdateCondition
source§impl PartialEq<UpdateCondition> for UpdateCondition
impl PartialEq<UpdateCondition> for UpdateCondition
source§fn eq(&self, other: &UpdateCondition) -> bool
fn eq(&self, other: &UpdateCondition) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateCondition
Auto Trait Implementations§
impl RefUnwindSafe for UpdateCondition
impl Send for UpdateCondition
impl Sync for UpdateCondition
impl Unpin for UpdateCondition
impl UnwindSafe for UpdateCondition
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