pub struct NodeAndEdgeRetrieveRequest {
pub sources: Option<Vec<SourceReferenceInternal>>,
pub items: Vec<NodeOrEdgeSpecification>,
pub include_typing: Option<bool>,
}Expand description
Request for retrieving nodes or edges by ID.
Fields§
§sources: Option<Vec<SourceReferenceInternal>>List of sources to include properties from.
items: Vec<NodeOrEdgeSpecification>List of node or edge IDs to retrieve.
include_typing: Option<bool>Whether to include type information in the response.
Trait Implementations§
Source§impl Clone for NodeAndEdgeRetrieveRequest
impl Clone for NodeAndEdgeRetrieveRequest
Source§fn clone(&self) -> NodeAndEdgeRetrieveRequest
fn clone(&self) -> NodeAndEdgeRetrieveRequest
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 Debug for NodeAndEdgeRetrieveRequest
impl Debug for NodeAndEdgeRetrieveRequest
Source§impl<'de> Deserialize<'de> for NodeAndEdgeRetrieveRequest
impl<'de> Deserialize<'de> for NodeAndEdgeRetrieveRequest
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 Freeze for NodeAndEdgeRetrieveRequest
impl RefUnwindSafe for NodeAndEdgeRetrieveRequest
impl Send for NodeAndEdgeRetrieveRequest
impl Sync for NodeAndEdgeRetrieveRequest
impl Unpin for NodeAndEdgeRetrieveRequest
impl UnwindSafe for NodeAndEdgeRetrieveRequest
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