[][src]Struct byo_graphql::List

pub struct List<Item> {
    pub totalCount: Option<usize>,
    pub nodes: Vec<Item>,
    pub pageInfo: Option<PageInfo>,
}

Fields

totalCount: Option<usize>nodes: Vec<Item>pageInfo: Option<PageInfo>

Implementations

impl<Item> List<Item>[src]

pub fn query_page_selector<S: AsRef<str>>(
    after: &Option<S>,
    first: usize,
    other_clauses: &str
) -> String
[src]

pub fn query_page_body(item_query_part: &str) -> String[src]

pub fn next_page_cursor(self) -> Option<String>[src]

Trait Implementations

impl<Item: Debug> Debug for List<Item>[src]

impl<'de, Item> Deserialize<'de> for List<Item> where
    Item: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<Item> RefUnwindSafe for List<Item> where
    Item: RefUnwindSafe
[src]

impl<Item> Send for List<Item> where
    Item: Send
[src]

impl<Item> Sync for List<Item> where
    Item: Sync
[src]

impl<Item> Unpin for List<Item> where
    Item: Unpin
[src]

impl<Item> UnwindSafe for List<Item> where
    Item: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.