pub struct GuideReportingStatus {
pub status_code: i32,
pub pending_ticket: Option<PendingGuideTicket>,
}
Fields§
§status_code: i32
§pending_ticket: Option<PendingGuideTicket>
Trait Implementations§
Source§impl BaseParser for GuideReportingStatus
impl BaseParser for GuideReportingStatus
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 GuideReportingStatus
impl Clone for GuideReportingStatus
Source§fn clone(&self) -> GuideReportingStatus
fn clone(&self) -> GuideReportingStatus
Returns a duplicate 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 GuideReportingStatus
impl Debug for GuideReportingStatus
Source§impl Default for GuideReportingStatus
impl Default for GuideReportingStatus
Source§fn default() -> GuideReportingStatus
fn default() -> GuideReportingStatus
Returns the “default value” for a type. Read more
Source§impl PartialEq for GuideReportingStatus
impl PartialEq for GuideReportingStatus
impl StructuralPartialEq for GuideReportingStatus
Auto Trait Implementations§
impl Freeze for GuideReportingStatus
impl RefUnwindSafe for GuideReportingStatus
impl Send for GuideReportingStatus
impl Sync for GuideReportingStatus
impl Unpin for GuideReportingStatus
impl UnwindSafe for GuideReportingStatus
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