pub struct FlowPreview {
pub value: Box<FlowValue>,
pub path: Option<String>,
pub args: HashMap<String, Value>,
pub tag: Option<String>,
pub restarted_from: Option<Box<RestartedFrom>>,
}
Fields§
§value: Box<FlowValue>
§path: Option<String>
§args: HashMap<String, Value>
§tag: Option<String>
§restarted_from: Option<Box<RestartedFrom>>
Implementations§
Source§impl FlowPreview
impl FlowPreview
Trait Implementations§
Source§impl Clone for FlowPreview
impl Clone for FlowPreview
Source§fn clone(&self) -> FlowPreview
fn clone(&self) -> FlowPreview
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 FlowPreview
impl Debug for FlowPreview
Source§impl Default for FlowPreview
impl Default for FlowPreview
Source§fn default() -> FlowPreview
fn default() -> FlowPreview
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FlowPreview
impl<'de> Deserialize<'de> for FlowPreview
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 FlowPreview
impl PartialEq for FlowPreview
Source§impl Serialize for FlowPreview
impl Serialize for FlowPreview
impl StructuralPartialEq for FlowPreview
Auto Trait Implementations§
impl Freeze for FlowPreview
impl RefUnwindSafe for FlowPreview
impl Send for FlowPreview
impl Sync for FlowPreview
impl Unpin for FlowPreview
impl UnwindSafe for FlowPreview
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