pub struct SyndicateMission {
pub nodes: Option<Vec<String>>,
pub eta: String,
pub jobs: Option<Vec<SyndicateJob>>,
pub syndicate: Syndicate,
pub id: String,
pub expiry: String,
pub activation: String,
}Fields§
§nodes: Option<Vec<String>>§eta: String§jobs: Option<Vec<SyndicateJob>>§syndicate: Syndicate§id: String§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.
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.
Implementations§
Trait Implementations§
Source§impl Clone for SyndicateMission
impl Clone for SyndicateMission
Source§fn clone(&self) -> SyndicateMission
fn clone(&self) -> SyndicateMission
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more