pub struct GetFlowByPathWithDraft200Response {Show 21 fields
pub summary: String,
pub description: Option<String>,
pub value: Box<FlowValue>,
pub schema: Option<Value>,
pub workspace_id: Option<String>,
pub path: String,
pub edited_by: String,
pub edited_at: String,
pub archived: bool,
pub extra_perms: HashMap<String, bool>,
pub starred: Option<bool>,
pub draft_only: Option<bool>,
pub tag: Option<String>,
pub ws_error_handler_muted: Option<bool>,
pub priority: Option<i32>,
pub dedicated_worker: Option<bool>,
pub timeout: Option<f64>,
pub visible_to_runner_only: Option<bool>,
pub on_behalf_of_email: Option<String>,
pub lock_error_logs: Option<String>,
pub draft: Option<Box<Flow>>,
}
Fields§
§summary: String
§description: Option<String>
§value: Box<FlowValue>
§schema: Option<Value>
§workspace_id: Option<String>
§path: String
§edited_by: String
§edited_at: String
§archived: bool
§extra_perms: HashMap<String, bool>
§starred: Option<bool>
§draft_only: Option<bool>
§tag: Option<String>
§ws_error_handler_muted: Option<bool>
§priority: Option<i32>
§dedicated_worker: Option<bool>
§timeout: Option<f64>
§visible_to_runner_only: Option<bool>
§on_behalf_of_email: Option<String>
§lock_error_logs: Option<String>
§draft: Option<Box<Flow>>
Implementations§
Trait Implementations§
Source§impl Clone for GetFlowByPathWithDraft200Response
impl Clone for GetFlowByPathWithDraft200Response
Source§fn clone(&self) -> GetFlowByPathWithDraft200Response
fn clone(&self) -> GetFlowByPathWithDraft200Response
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 Default for GetFlowByPathWithDraft200Response
impl Default for GetFlowByPathWithDraft200Response
Source§fn default() -> GetFlowByPathWithDraft200Response
fn default() -> GetFlowByPathWithDraft200Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetFlowByPathWithDraft200Response
impl<'de> Deserialize<'de> for GetFlowByPathWithDraft200Response
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 GetFlowByPathWithDraft200Response
impl PartialEq for GetFlowByPathWithDraft200Response
Source§fn eq(&self, other: &GetFlowByPathWithDraft200Response) -> bool
fn eq(&self, other: &GetFlowByPathWithDraft200Response) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetFlowByPathWithDraft200Response
Auto Trait Implementations§
impl Freeze for GetFlowByPathWithDraft200Response
impl RefUnwindSafe for GetFlowByPathWithDraft200Response
impl Send for GetFlowByPathWithDraft200Response
impl Sync for GetFlowByPathWithDraft200Response
impl Unpin for GetFlowByPathWithDraft200Response
impl UnwindSafe for GetFlowByPathWithDraft200Response
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