[][src]Struct fahapi::SlotQueueInfo

pub struct SlotQueueInfo {
    pub id: String,
    pub state: String,
    pub error: String,
    pub project: i64,
    pub run: i64,
    pub clone: i64,
    pub gen: i64,
    pub core: String,
    pub unit: String,
    pub percent_done: String,
    pub eta: FAHDuration,
    pub ppd: StringInt,
    pub credit_estimate: StringInt,
    pub waiting_on: String,
    pub next_attempt: FAHDuration,
    pub time_remaining: FAHDuration,
    pub total_frames: i64,
    pub frames_done: i64,
    pub assigned: FAHTime,
    pub timeout: FAHTime,
    pub deadline: FAHTime,
    pub ws: String,
    pub cs: String,
    pub attempts: i64,
    pub slot: String,
    pub tpf: FAHDuration,
    pub base_credit: StringInt,
}

Fields

id: Stringstate: Stringerror: Stringproject: i64run: i64clone: i64gen: i64core: Stringunit: Stringpercent_done: Stringeta: FAHDurationppd: StringIntcredit_estimate: StringIntwaiting_on: Stringnext_attempt: FAHDurationtime_remaining: FAHDurationtotal_frames: i64frames_done: i64assigned: FAHTimetimeout: FAHTimedeadline: FAHTimews: Stringcs: Stringattempts: i64slot: Stringtpf: FAHDurationbase_credit: StringInt

Trait Implementations

impl Clone for SlotQueueInfo[src]

impl Debug for SlotQueueInfo[src]

impl Default for SlotQueueInfo[src]

impl<'de> Deserialize<'de> for SlotQueueInfo where
    SlotQueueInfo: Default
[src]

impl Eq for SlotQueueInfo[src]

impl Hash for SlotQueueInfo[src]

impl PartialEq<SlotQueueInfo> for SlotQueueInfo[src]

impl StructuralEq for SlotQueueInfo[src]

impl StructuralPartialEq for SlotQueueInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.