pub struct FlowSummary {
pub id: String,
pub name: String,
pub node_count: usize,
pub created_at: String,
pub updated_at: String,
pub enabled: bool,
}Expand description
Lightweight metadata describing a saved flow, without the graph payload.
Returned by directory listings — see crate::store::list_flows.
Fields§
§id: StringThe flow’s stable identifier.
name: StringHuman-readable label.
node_count: usizeNumber of nodes in the graph.
created_at: StringISO-8601 / RFC-3339 creation timestamp.
updated_at: StringISO-8601 / RFC-3339 last-modified timestamp.
enabled: boolWhether the flow is enabled for scheduling.
Trait Implementations§
Source§impl Clone for FlowSummary
impl Clone for FlowSummary
Source§fn clone(&self) -> FlowSummary
fn clone(&self) -> FlowSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FlowSummary
impl Debug for FlowSummary
Source§impl<'de> Deserialize<'de> for FlowSummary
impl<'de> Deserialize<'de> for FlowSummary
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 FlowSummary
impl PartialEq for FlowSummary
Source§fn eq(&self, other: &FlowSummary) -> bool
fn eq(&self, other: &FlowSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FlowSummary
impl Serialize for FlowSummary
impl StructuralPartialEq for FlowSummary
Auto Trait Implementations§
impl Freeze for FlowSummary
impl RefUnwindSafe for FlowSummary
impl Send for FlowSummary
impl Sync for FlowSummary
impl Unpin for FlowSummary
impl UnsafeUnpin for FlowSummary
impl UnwindSafe for FlowSummary
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