pub struct MissionEventEntry {
pub mission_id: u64,
pub name: MissionType,
pub passenger_mission: bool,
pub expires: u64,
}
Fields§
§mission_id: u64
§name: MissionType
§passenger_mission: bool
§expires: u64
Trait Implementations§
Source§impl Clone for MissionEventEntry
impl Clone for MissionEventEntry
Source§fn clone(&self) -> MissionEventEntry
fn clone(&self) -> MissionEventEntry
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 MissionEventEntry
impl Debug for MissionEventEntry
Source§impl<'de> Deserialize<'de> for MissionEventEntry
impl<'de> Deserialize<'de> for MissionEventEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MissionEventEntry
impl PartialEq for MissionEventEntry
Source§impl Serialize for MissionEventEntry
impl Serialize for MissionEventEntry
impl StructuralPartialEq for MissionEventEntry
Auto Trait Implementations§
impl Freeze for MissionEventEntry
impl RefUnwindSafe for MissionEventEntry
impl Send for MissionEventEntry
impl Sync for MissionEventEntry
impl Unpin for MissionEventEntry
impl UnwindSafe for MissionEventEntry
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