pub struct FlowInspection {
pub plans: Vec<FlowInspectorPlan>,
pub current_plan: Option<Box<FlowInspectorPlan>>,
pub is_completed: bool,
}
Expand description
FlowInspection : Serializer for inspect endpoint
Fields§
§plans: Vec<FlowInspectorPlan>
§current_plan: Option<Box<FlowInspectorPlan>>
§is_completed: bool
Implementations§
Source§impl FlowInspection
impl FlowInspection
Sourcepub fn new(plans: Vec<FlowInspectorPlan>, is_completed: bool) -> FlowInspection
pub fn new(plans: Vec<FlowInspectorPlan>, is_completed: bool) -> FlowInspection
Serializer for inspect endpoint
Trait Implementations§
Source§impl Clone for FlowInspection
impl Clone for FlowInspection
Source§fn clone(&self) -> FlowInspection
fn clone(&self) -> FlowInspection
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 FlowInspection
impl Debug for FlowInspection
Source§impl Default for FlowInspection
impl Default for FlowInspection
Source§fn default() -> FlowInspection
fn default() -> FlowInspection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FlowInspection
impl<'de> Deserialize<'de> for FlowInspection
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 FlowInspection
impl PartialEq for FlowInspection
Source§impl Serialize for FlowInspection
impl Serialize for FlowInspection
impl StructuralPartialEq for FlowInspection
Auto Trait Implementations§
impl Freeze for FlowInspection
impl RefUnwindSafe for FlowInspection
impl Send for FlowInspection
impl Sync for FlowInspection
impl Unpin for FlowInspection
impl UnwindSafe for FlowInspection
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