pub struct SentientOutposts {
pub id: String,
pub node: f64,
pub activation: String,
pub expiry: String,
pub active: bool,
pub mission: Box<SentientOutpostsMission>,
}Fields§
§id: String§node: f64§activation: StringA 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.
expiry: StringA 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.
active: bool§mission: Box<SentientOutpostsMission>Implementations§
Source§impl SentientOutposts
impl SentientOutposts
pub fn new( id: String, node: f64, activation: String, expiry: String, active: bool, mission: SentientOutpostsMission, ) -> SentientOutposts
Trait Implementations§
Source§impl Clone for SentientOutposts
impl Clone for SentientOutposts
Source§fn clone(&self) -> SentientOutposts
fn clone(&self) -> SentientOutposts
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more