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