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