pub struct StepSettings {
pub action_name: Option<String>,
pub input: Option<HashMap<String, Value>>,
pub piece_name: Option<String>,
pub piece_version: Option<String>,
pub trigger_name: Option<String>,
}Fields§
§action_name: Option<String>§input: Option<HashMap<String, Value>>§piece_name: Option<String>§piece_version: Option<String>§trigger_name: Option<String>Implementations§
Source§impl StepSettings
impl StepSettings
pub fn new() -> StepSettings
Trait Implementations§
Source§impl Clone for StepSettings
impl Clone for StepSettings
Source§fn clone(&self) -> StepSettings
fn clone(&self) -> StepSettings
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 StepSettings
impl Debug for StepSettings
Source§impl Default for StepSettings
impl Default for StepSettings
Source§fn default() -> StepSettings
fn default() -> StepSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StepSettings
impl<'de> Deserialize<'de> for StepSettings
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 StepSettings
impl PartialEq for StepSettings
Source§impl Serialize for StepSettings
impl Serialize for StepSettings
impl StructuralPartialEq for StepSettings
Auto Trait Implementations§
impl Freeze for StepSettings
impl RefUnwindSafe for StepSettings
impl Send for StepSettings
impl Sync for StepSettings
impl Unpin for StepSettings
impl UnsafeUnpin for StepSettings
impl UnwindSafe for StepSettings
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