pub struct FleetLayoutEdge {
pub id: String,
pub source: String,
pub target: String,
pub type: Option<String>,
}Expand description
FleetLayoutEdge model.
Fields§
§id: String§source: StringAgent id.
target: StringAgent id.
type: Option<String>Edge kind; a workflow edge is what makes the graph runnable.
Trait Implementations§
Source§impl Clone for FleetLayoutEdge
impl Clone for FleetLayoutEdge
Source§fn clone(&self) -> FleetLayoutEdge
fn clone(&self) -> FleetLayoutEdge
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 FleetLayoutEdge
impl Debug for FleetLayoutEdge
Source§impl Default for FleetLayoutEdge
impl Default for FleetLayoutEdge
Source§fn default() -> FleetLayoutEdge
fn default() -> FleetLayoutEdge
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FleetLayoutEdge
impl<'de> Deserialize<'de> for FleetLayoutEdge
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 FleetLayoutEdge
impl PartialEq for FleetLayoutEdge
Source§impl Serialize for FleetLayoutEdge
impl Serialize for FleetLayoutEdge
impl StructuralPartialEq for FleetLayoutEdge
Auto Trait Implementations§
impl Freeze for FleetLayoutEdge
impl RefUnwindSafe for FleetLayoutEdge
impl Send for FleetLayoutEdge
impl Sync for FleetLayoutEdge
impl Unpin for FleetLayoutEdge
impl UnsafeUnpin for FleetLayoutEdge
impl UnwindSafe for FleetLayoutEdge
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