pub struct PendingGuideTicket {
pub ticket_type: i32,
pub seconds_ago: i32,
pub is_guide: bool,
pub other_party_name: String,
pub other_party_figure: String,
pub description: String,
pub room_name: String,
}
Fields§
§ticket_type: i32
§seconds_ago: i32
§is_guide: bool
§other_party_name: String
§other_party_figure: String
§description: String
§room_name: String
Trait Implementations§
Source§impl Clone for PendingGuideTicket
impl Clone for PendingGuideTicket
Source§fn clone(&self) -> PendingGuideTicket
fn clone(&self) -> PendingGuideTicket
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 PendingGuideTicket
impl Debug for PendingGuideTicket
Source§impl Default for PendingGuideTicket
impl Default for PendingGuideTicket
Source§fn default() -> PendingGuideTicket
fn default() -> PendingGuideTicket
Returns the “default value” for a type. Read more
Source§impl PacketVariable for PendingGuideTicket
impl PacketVariable for PendingGuideTicket
Source§impl PartialEq for PendingGuideTicket
impl PartialEq for PendingGuideTicket
impl StructuralPartialEq for PendingGuideTicket
Auto Trait Implementations§
impl Freeze for PendingGuideTicket
impl RefUnwindSafe for PendingGuideTicket
impl Send for PendingGuideTicket
impl Sync for PendingGuideTicket
impl Unpin for PendingGuideTicket
impl UnwindSafe for PendingGuideTicket
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