pub struct StepOutputs { /* private fields */ }Implementations§
Source§impl StepOutputs
impl StepOutputs
pub fn new() -> Self
pub fn from_value(value: Value) -> Self
pub fn get(&self, key: &str) -> Option<&Value>
pub fn get_string(&self, key: &str) -> Option<String>
pub fn insert(&mut self, key: impl Into<String>, value: impl Into<Value>)
pub fn is_empty(&self) -> bool
pub fn to_value(&self) -> Value
Trait Implementations§
Source§impl Clone for StepOutputs
impl Clone for StepOutputs
Source§fn clone(&self) -> StepOutputs
fn clone(&self) -> StepOutputs
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 StepOutputs
impl Debug for StepOutputs
Source§impl Default for StepOutputs
impl Default for StepOutputs
Source§fn default() -> StepOutputs
fn default() -> StepOutputs
Returns the “default value” for a type. Read more
Source§impl IntoOutputs for StepOutputs
impl IntoOutputs for StepOutputs
fn into_outputs(self) -> StepOutputs
Auto Trait Implementations§
impl Freeze for StepOutputs
impl RefUnwindSafe for StepOutputs
impl Send for StepOutputs
impl Sync for StepOutputs
impl Unpin for StepOutputs
impl UnwindSafe for StepOutputs
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