pub struct FlowError {
pub error_type: String,
pub message: String,
pub node_id: Option<String>,
pub details: Option<String>,
}Expand description
Flow error information
Fields§
§error_type: StringError type
message: StringError message
node_id: Option<String>Node where error occurred
details: Option<String>Stack trace or additional details
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FlowError
impl<'de> Deserialize<'de> for FlowError
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
Auto Trait Implementations§
impl Freeze for FlowError
impl RefUnwindSafe for FlowError
impl Send for FlowError
impl Sync for FlowError
impl Unpin for FlowError
impl UnwindSafe for FlowError
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