pub struct IdentityGraphResult {
pub prefix: String,
pub nodes: Vec<IdentitySegmentDto>,
pub edges: Vec<IdentityGraphEdge>,
pub ports_in: Vec<IdentityGraphPort>,
pub ports_out: Vec<IdentityGraphPort>,
pub unlinked: UnlinkedRefsDto,
}Fields§
§prefix: String§nodes: Vec<IdentitySegmentDto>§edges: Vec<IdentityGraphEdge>§ports_in: Vec<IdentityGraphPort>§ports_out: Vec<IdentityGraphPort>§unlinked: UnlinkedRefsDtoTrait Implementations§
Source§impl Clone for IdentityGraphResult
impl Clone for IdentityGraphResult
Source§fn clone(&self) -> IdentityGraphResult
fn clone(&self) -> IdentityGraphResult
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 IdentityGraphResult
impl Debug for IdentityGraphResult
Source§impl Default for IdentityGraphResult
impl Default for IdentityGraphResult
Source§fn default() -> IdentityGraphResult
fn default() -> IdentityGraphResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IdentityGraphResult
impl<'de> Deserialize<'de> for IdentityGraphResult
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
impl Eq for IdentityGraphResult
Source§impl PartialEq for IdentityGraphResult
impl PartialEq for IdentityGraphResult
Source§impl Serialize for IdentityGraphResult
impl Serialize for IdentityGraphResult
impl StructuralPartialEq for IdentityGraphResult
Auto Trait Implementations§
impl Freeze for IdentityGraphResult
impl RefUnwindSafe for IdentityGraphResult
impl Send for IdentityGraphResult
impl Sync for IdentityGraphResult
impl Unpin for IdentityGraphResult
impl UnsafeUnpin for IdentityGraphResult
impl UnwindSafe for IdentityGraphResult
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