[][src]Struct misskey_api::endpoint::users::following::RequestWithUserId

pub struct RequestWithUserId {
    pub user_id: Id<User>,
    pub limit: Option<u8>,
    pub since_id: Option<Id<User>>,
    pub until_id: Option<Id<User>>,
}

Fields

user_id: Id<User>limit: Option<u8>

1 .. 100

since_id: Option<Id<User>>until_id: Option<Id<User>>

Implementations

impl RequestWithUserId[src]

pub fn builder() -> RequestWithUserIdBuilder<((), (), (), ())>[src]

Create a builder for building RequestWithUserId. On the builder, call .user_id(...), .limit(...)(optional), .since_id(...)(optional), .until_id(...)(optional) to set the values of the fields (they accept Into values). Finally, call .build() to create the instance of RequestWithUserId.

Trait Implementations

impl Clone for RequestWithUserId[src]

impl Debug for RequestWithUserId[src]

impl PaginationRequest for RequestWithUserId[src]

type Item = FollowingWithFollowee

The paginated item type.

impl Request for RequestWithUserId[src]

type Response = Vec<FollowingWithFollowee>

Response type of this request.

impl Serialize for RequestWithUserId[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.