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