pub struct PatchFlowIn {
pub external_id: Option<String>,
pub folder_id: Option<String>,
pub id: Option<String>,
pub metadata: Option<Option<Value>>,
pub published_version_id: Option<String>,
}Fields§
§external_id: Option<String>ExternalID sets the caller’s own id for this flow.
folder_id: Option<String>FolderID moves the flow in the builder’s tree.
id: Option<String>ID is the flow to update, from the path.
metadata: Option<Option<Value>>§published_version_id: Option<String>PublishedVersionID pins the version runs execute. It must name a version OF THIS FLOW; empty clears the pin, so runs take the latest version again.
Implementations§
Source§impl PatchFlowIn
impl PatchFlowIn
pub fn new() -> PatchFlowIn
Trait Implementations§
Source§impl Clone for PatchFlowIn
impl Clone for PatchFlowIn
Source§fn clone(&self) -> PatchFlowIn
fn clone(&self) -> PatchFlowIn
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 Debug for PatchFlowIn
impl Debug for PatchFlowIn
Source§impl Default for PatchFlowIn
impl Default for PatchFlowIn
Source§fn default() -> PatchFlowIn
fn default() -> PatchFlowIn
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchFlowIn
impl<'de> Deserialize<'de> for PatchFlowIn
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 PatchFlowIn
impl PartialEq for PatchFlowIn
Source§impl Serialize for PatchFlowIn
impl Serialize for PatchFlowIn
impl StructuralPartialEq for PatchFlowIn
Auto Trait Implementations§
impl Freeze for PatchFlowIn
impl RefUnwindSafe for PatchFlowIn
impl Send for PatchFlowIn
impl Sync for PatchFlowIn
impl Unpin for PatchFlowIn
impl UnsafeUnpin for PatchFlowIn
impl UnwindSafe for PatchFlowIn
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