pub struct VoidTrader {
pub id: Option<String>,
pub activation: Option<String>,
pub expiry: Option<String>,
pub character: String,
pub location: String,
pub inventory: Vec<VoidTraderAllOfInventory>,
pub ps_id: String,
pub active: bool,
pub start_string: String,
pub end_string: String,
}Fields§
§id: Option<String>unique identifier for this object/event/thing
activation: Option<String>ISO-8601 formatted timestamp for when the event began
expiry: Option<String>A timestamp in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ) representing a specific point in time. This format is commonly used in APIs to ensure consistent date and time representation. The timestamp is in UTC (Coordinated Universal Time) and does not include any timezone offset. It is used to represent events, deadlines, or any time-related information in a standardized way. Example: "2023-10-01T12:00:00Z" represents October 1, 2023, at 12:00 PM UTC.
character: String§location: String§inventory: Vec<VoidTraderAllOfInventory>§ps_id: String§active: bool§start_string: String§end_string: StringImplementations§
Source§impl VoidTrader
impl VoidTrader
Trait Implementations§
Source§impl Clone for VoidTrader
impl Clone for VoidTrader
Source§fn clone(&self) -> VoidTrader
fn clone(&self) -> VoidTrader
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 VoidTrader
impl Debug for VoidTrader
Source§impl Default for VoidTrader
impl Default for VoidTrader
Source§fn default() -> VoidTrader
fn default() -> VoidTrader
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VoidTrader
impl<'de> Deserialize<'de> for VoidTrader
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 VoidTrader
impl PartialEq for VoidTrader
Source§impl Serialize for VoidTrader
impl Serialize for VoidTrader
impl StructuralPartialEq for VoidTrader
Auto Trait Implementations§
impl Freeze for VoidTrader
impl RefUnwindSafe for VoidTrader
impl Send for VoidTrader
impl Sync for VoidTrader
impl Unpin for VoidTrader
impl UnwindSafe for VoidTrader
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