pub struct ErrorFlowReplaced {
pub error: Option<Box<GenericError>>,
pub use_flow_id: Option<String>,
}Expand description
ErrorFlowReplaced : Is sent when a flow is replaced by a different flow of the same class
Fields§
§error: Option<Box<GenericError>>§use_flow_id: Option<String>The flow ID that should be used for the new flow as it contains the correct messages.
Implementations§
Source§impl ErrorFlowReplaced
impl ErrorFlowReplaced
Sourcepub fn new() -> ErrorFlowReplaced
pub fn new() -> ErrorFlowReplaced
Is sent when a flow is replaced by a different flow of the same class
Trait Implementations§
Source§impl Clone for ErrorFlowReplaced
impl Clone for ErrorFlowReplaced
Source§fn clone(&self) -> ErrorFlowReplaced
fn clone(&self) -> ErrorFlowReplaced
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 ErrorFlowReplaced
impl Debug for ErrorFlowReplaced
Source§impl Default for ErrorFlowReplaced
impl Default for ErrorFlowReplaced
Source§fn default() -> ErrorFlowReplaced
fn default() -> ErrorFlowReplaced
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ErrorFlowReplaced
impl<'de> Deserialize<'de> for ErrorFlowReplaced
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 ErrorFlowReplaced
impl PartialEq for ErrorFlowReplaced
Source§impl Serialize for ErrorFlowReplaced
impl Serialize for ErrorFlowReplaced
impl StructuralPartialEq for ErrorFlowReplaced
Auto Trait Implementations§
impl Freeze for ErrorFlowReplaced
impl RefUnwindSafe for ErrorFlowReplaced
impl Send for ErrorFlowReplaced
impl Sync for ErrorFlowReplaced
impl Unpin for ErrorFlowReplaced
impl UnwindSafe for ErrorFlowReplaced
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