pub struct JobInfo {Show 33 fields
pub id: String,
pub name: String,
pub job_state: String,
pub file_sync_state: String,
pub state_reason: String,
pub alloc_resource: AllocResource,
pub alloc_type: String,
pub exec_host_num: isize,
pub zone: String,
pub workdir: String,
pub output_dir: String,
pub no_needed_paths: String,
pub needed_paths: String,
pub parameters: String,
pub no_round: bool,
pub pending_time: String,
pub running_time: String,
pub terminating_time: String,
pub suspending_time: String,
pub suspended_time: String,
pub end_time: String,
pub create_time: String,
pub update_time: String,
pub file_ready_time: String,
pub transmitting_time: String,
pub transmitted_time: String,
pub download_progress: Progress,
pub upload_progress: Progress,
pub execution_duration: isize,
pub exit_code: String,
pub is_system_failed: bool,
pub stdout_path: String,
pub stderr_path: String,
}
Fields§
§id: String
§name: String
§job_state: String
§file_sync_state: String
§state_reason: String
§alloc_resource: AllocResource
§alloc_type: String
§exec_host_num: isize
§zone: String
§workdir: String
§output_dir: String
§no_needed_paths: String
§needed_paths: String
§parameters: String
§no_round: bool
§pending_time: String
§running_time: String
§terminating_time: String
§suspending_time: String
§suspended_time: String
§end_time: String
§create_time: String
§update_time: String
§file_ready_time: String
§transmitting_time: String
§transmitted_time: String
§download_progress: Progress
§upload_progress: Progress
§execution_duration: isize
§exit_code: String
§is_system_failed: bool
§stdout_path: String
§stderr_path: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for JobInfo
impl<'de> Deserialize<'de> for JobInfo
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
Auto Trait Implementations§
impl Freeze for JobInfo
impl RefUnwindSafe for JobInfo
impl Send for JobInfo
impl Sync for JobInfo
impl Unpin for JobInfo
impl UnwindSafe for JobInfo
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