[][src]Struct octocrab::issues::ListCommentsBuilder

pub struct ListCommentsBuilder<'octo, 'r> { /* fields omitted */ }

Implementations

impl<'octo, 'r> ListCommentsBuilder<'octo, 'r>[src]

pub fn per_page(self, per_page: impl Into<u8>) -> Self[src]

Results per page (max 100).

pub fn since(self, since: impl Into<DateTime<Utc>>) -> Self[src]

Only comments updated at or after this time are returned.

pub fn page(self, page: impl Into<u32>) -> Self[src]

Page number of the results to fetch.

pub async fn send(self) -> Result<Page<Comment>>[src]

Send the actual request.

Trait Implementations

impl<'octo, 'r> Serialize for ListCommentsBuilder<'octo, 'r>[src]

Auto Trait Implementations

impl<'octo, 'r> !RefUnwindSafe for ListCommentsBuilder<'octo, 'r>

impl<'octo, 'r> Send for ListCommentsBuilder<'octo, 'r>

impl<'octo, 'r> Sync for ListCommentsBuilder<'octo, 'r>

impl<'octo, 'r> Unpin for ListCommentsBuilder<'octo, 'r> where
    'octo: 'r, 

impl<'octo, 'r> !UnwindSafe for ListCommentsBuilder<'octo, 'r>

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> From<T> 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.