pub struct NodeAndEdgeRetrieveResponse<TProperties> {
pub items: Vec<NodeOrEdge<TProperties>>,
pub typing: Option<TypeInformation>,
}Expand description
Response for retrieving nodes and edges.
Fields§
§items: Vec<NodeOrEdge<TProperties>>Retrieved nodes and edges.
typing: Option<TypeInformation>Type information if requested.
Trait Implementations§
Source§impl<TProperties: Clone> Clone for NodeAndEdgeRetrieveResponse<TProperties>
impl<TProperties: Clone> Clone for NodeAndEdgeRetrieveResponse<TProperties>
Source§fn clone(&self) -> NodeAndEdgeRetrieveResponse<TProperties>
fn clone(&self) -> NodeAndEdgeRetrieveResponse<TProperties>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<TProperties: Debug> Debug for NodeAndEdgeRetrieveResponse<TProperties>
impl<TProperties: Debug> Debug for NodeAndEdgeRetrieveResponse<TProperties>
Source§impl<'de, TProperties> Deserialize<'de> for NodeAndEdgeRetrieveResponse<TProperties>where
TProperties: Deserialize<'de>,
impl<'de, TProperties> Deserialize<'de> for NodeAndEdgeRetrieveResponse<TProperties>where
TProperties: Deserialize<'de>,
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<TProperties> RetrieveWithRequest<NodeAndEdgeRetrieveRequest, NodeAndEdgeRetrieveResponse<TProperties>> for Resource<SlimNodeOrEdge>
impl<TProperties> RetrieveWithRequest<NodeAndEdgeRetrieveRequest, NodeAndEdgeRetrieveResponse<TProperties>> for Resource<SlimNodeOrEdge>
Auto Trait Implementations§
impl<TProperties> Freeze for NodeAndEdgeRetrieveResponse<TProperties>
impl<TProperties> RefUnwindSafe for NodeAndEdgeRetrieveResponse<TProperties>where
TProperties: RefUnwindSafe,
impl<TProperties> Send for NodeAndEdgeRetrieveResponse<TProperties>where
TProperties: Send,
impl<TProperties> Sync for NodeAndEdgeRetrieveResponse<TProperties>where
TProperties: Sync,
impl<TProperties> Unpin for NodeAndEdgeRetrieveResponse<TProperties>where
TProperties: Unpin,
impl<TProperties> UnwindSafe for NodeAndEdgeRetrieveResponse<TProperties>where
TProperties: UnwindSafe,
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