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