pub struct GetJobUpdates200Response {
pub running: Option<bool>,
pub completed: Option<bool>,
pub new_logs: Option<String>,
pub log_offset: Option<i32>,
pub mem_peak: Option<i32>,
pub progress: Option<i32>,
pub stream_offset: Option<i32>,
pub new_result_stream: Option<String>,
pub flow_status: Option<Box<FlowStatus>>,
pub workflow_as_code_status: Option<Box<WorkflowStatus>>,
}
Fields§
§running: Option<bool>
§completed: Option<bool>
§new_logs: Option<String>
§log_offset: Option<i32>
§mem_peak: Option<i32>
§progress: Option<i32>
§stream_offset: Option<i32>
§new_result_stream: Option<String>
§flow_status: Option<Box<FlowStatus>>
§workflow_as_code_status: Option<Box<WorkflowStatus>>
Implementations§
Source§impl GetJobUpdates200Response
impl GetJobUpdates200Response
pub fn new() -> GetJobUpdates200Response
Trait Implementations§
Source§impl Clone for GetJobUpdates200Response
impl Clone for GetJobUpdates200Response
Source§fn clone(&self) -> GetJobUpdates200Response
fn clone(&self) -> GetJobUpdates200Response
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 GetJobUpdates200Response
impl Debug for GetJobUpdates200Response
Source§impl Default for GetJobUpdates200Response
impl Default for GetJobUpdates200Response
Source§fn default() -> GetJobUpdates200Response
fn default() -> GetJobUpdates200Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetJobUpdates200Response
impl<'de> Deserialize<'de> for GetJobUpdates200Response
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 GetJobUpdates200Response
impl PartialEq for GetJobUpdates200Response
Source§impl Serialize for GetJobUpdates200Response
impl Serialize for GetJobUpdates200Response
impl StructuralPartialEq for GetJobUpdates200Response
Auto Trait Implementations§
impl Freeze for GetJobUpdates200Response
impl RefUnwindSafe for GetJobUpdates200Response
impl Send for GetJobUpdates200Response
impl Sync for GetJobUpdates200Response
impl Unpin for GetJobUpdates200Response
impl UnwindSafe for GetJobUpdates200Response
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