pub struct GraphNeighborsData {
pub items: Vec<GraphNeighborItem>,
pub next_cursor: Option<String>,
}Expand description
API response payload for graph neighbor query.
Fields§
§items: Vec<GraphNeighborItem>§next_cursor: Option<String>Trait Implementations§
Source§impl Clone for GraphNeighborsData
impl Clone for GraphNeighborsData
Source§fn clone(&self) -> GraphNeighborsData
fn clone(&self) -> GraphNeighborsData
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 GraphNeighborsData
impl Debug for GraphNeighborsData
Source§impl<'de> Deserialize<'de> for GraphNeighborsData
impl<'de> Deserialize<'de> for GraphNeighborsData
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
Auto Trait Implementations§
impl Freeze for GraphNeighborsData
impl RefUnwindSafe for GraphNeighborsData
impl Send for GraphNeighborsData
impl Sync for GraphNeighborsData
impl Unpin for GraphNeighborsData
impl UnsafeUnpin for GraphNeighborsData
impl UnwindSafe for GraphNeighborsData
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