pub struct EdgePage<T, C> {
pub nodes: Vec<T>,
pub next_cursor: Option<C>,
}Expand description
a single page of connection results
Fields§
§nodes: Vec<T>node payloads for this page
next_cursor: Option<C>next cursor (if any)
Trait Implementations§
Auto Trait Implementations§
impl<T, C> Freeze for EdgePage<T, C>
impl<T, C> RefUnwindSafe for EdgePage<T, C>
impl<T, C> Send for EdgePage<T, C>
impl<T, C> Sync for EdgePage<T, C>
impl<T, C> Unpin for EdgePage<T, C>
impl<T, C> UnsafeUnpin for EdgePage<T, C>
impl<T, C> UnwindSafe for EdgePage<T, C>
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