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