pub struct GetFlowAllLogsStructured200ResponseInner {
pub job_id: String,
pub label: String,
pub kind: String,
pub flow_step_id: Option<Option<String>>,
pub step_path: Option<Option<String>>,
pub depth: i32,
pub parent_module_type: Option<Option<String>>,
pub sibling_index: i32,
pub sibling_count: i32,
pub logs: String,
}Fields§
§job_id: String§label: Stringhuman-readable label describing the job’s position in the flow tree
kind: Stringjob kind (script, flow, forloopflow, …)
flow_step_id: Option<Option<String>>§step_path: Option<Option<String>>materialized step path (e.g. "a/b")
depth: i32depth in the flow tree (0 for the root flow job)
parent_module_type: Option<Option<String>>parent module type (forloopflow, branchall, …)
sibling_index: i321-based index of this job among siblings sharing the same step
sibling_count: i32total number of siblings sharing the same step
logs: StringImplementations§
Trait Implementations§
Source§impl Clone for GetFlowAllLogsStructured200ResponseInner
impl Clone for GetFlowAllLogsStructured200ResponseInner
Source§fn clone(&self) -> GetFlowAllLogsStructured200ResponseInner
fn clone(&self) -> GetFlowAllLogsStructured200ResponseInner
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for GetFlowAllLogsStructured200ResponseInner
impl Default for GetFlowAllLogsStructured200ResponseInner
Source§fn default() -> GetFlowAllLogsStructured200ResponseInner
fn default() -> GetFlowAllLogsStructured200ResponseInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetFlowAllLogsStructured200ResponseInner
impl<'de> Deserialize<'de> for GetFlowAllLogsStructured200ResponseInner
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 GetFlowAllLogsStructured200ResponseInner
impl PartialEq for GetFlowAllLogsStructured200ResponseInner
Source§fn eq(&self, other: &GetFlowAllLogsStructured200ResponseInner) -> bool
fn eq(&self, other: &GetFlowAllLogsStructured200ResponseInner) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetFlowAllLogsStructured200ResponseInner
Auto Trait Implementations§
impl Freeze for GetFlowAllLogsStructured200ResponseInner
impl RefUnwindSafe for GetFlowAllLogsStructured200ResponseInner
impl Send for GetFlowAllLogsStructured200ResponseInner
impl Sync for GetFlowAllLogsStructured200ResponseInner
impl Unpin for GetFlowAllLogsStructured200ResponseInner
impl UnsafeUnpin for GetFlowAllLogsStructured200ResponseInner
impl UnwindSafe for GetFlowAllLogsStructured200ResponseInner
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