pub struct TeamGraphEdge {
pub edge_id: String,
pub from: String,
pub to: String,
pub type: TeamGraphEdgeType,
pub task_id: Option<String>,
pub created_at: String,
}Expand description
TeamGraphEdge model.
Fields§
§edge_id: String§from: String§to: String§type: TeamGraphEdgeType§task_id: Option<String>§created_at: StringTrait Implementations§
Source§impl Clone for TeamGraphEdge
impl Clone for TeamGraphEdge
Source§fn clone(&self) -> TeamGraphEdge
fn clone(&self) -> TeamGraphEdge
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 TeamGraphEdge
impl Debug for TeamGraphEdge
Source§impl Default for TeamGraphEdge
impl Default for TeamGraphEdge
Source§fn default() -> TeamGraphEdge
fn default() -> TeamGraphEdge
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TeamGraphEdge
impl<'de> Deserialize<'de> for TeamGraphEdge
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 TeamGraphEdge
impl PartialEq for TeamGraphEdge
Source§impl Serialize for TeamGraphEdge
impl Serialize for TeamGraphEdge
impl StructuralPartialEq for TeamGraphEdge
Auto Trait Implementations§
impl Freeze for TeamGraphEdge
impl RefUnwindSafe for TeamGraphEdge
impl Send for TeamGraphEdge
impl Sync for TeamGraphEdge
impl Unpin for TeamGraphEdge
impl UnsafeUnpin for TeamGraphEdge
impl UnwindSafe for TeamGraphEdge
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