[][src]Struct misskey_api::endpoint::notes::conversation::RequestBuilder

#[must_use]pub struct RequestBuilder<TypedBuilderFields> { /* fields omitted */ }

Builder for Request instances.

See Request::builder() for more info.

Implementations

impl<__offset, __limit> RequestBuilder<((), __offset, __limit)>[src]

pub fn note_id(
    self,
    note_id: Id<Note>
) -> RequestBuilder<((Id<Note>,), __offset, __limit)>
[src]

impl<__note_id, __limit> RequestBuilder<(__note_id, (), __limit)>[src]

pub fn offset(
    self,
    offset: u64
) -> RequestBuilder<(__note_id, (Option<u64>,), __limit)>
[src]

impl<__note_id, __offset> RequestBuilder<(__note_id, __offset, ())>[src]

pub fn limit(
    self,
    limit: u8
) -> RequestBuilder<(__note_id, __offset, (Option<u8>,))>
[src]

impl<__offset: RequestBuilder_Optional<Option<u64>>, __limit: RequestBuilder_Optional<Option<u8>>> RequestBuilder<((Id<Note>,), __offset, __limit)>[src]

pub fn build(self) -> Request[src]

Finalise the builder and create its Request instance

Auto Trait Implementations

impl<TypedBuilderFields> RefUnwindSafe for RequestBuilder<TypedBuilderFields> where
    TypedBuilderFields: RefUnwindSafe
[src]

impl<TypedBuilderFields> Send for RequestBuilder<TypedBuilderFields> where
    TypedBuilderFields: Send
[src]

impl<TypedBuilderFields> Sync for RequestBuilder<TypedBuilderFields> where
    TypedBuilderFields: Sync
[src]

impl<TypedBuilderFields> Unpin for RequestBuilder<TypedBuilderFields> where
    TypedBuilderFields: Unpin
[src]

impl<TypedBuilderFields> UnwindSafe for RequestBuilder<TypedBuilderFields> where
    TypedBuilderFields: 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> 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.