pub struct GetUserProfilePhotos { /* private fields */ }
Expand description
Use this method to get a list of profile pictures for a user.
Implementations§
Source§impl GetUserProfilePhotos
impl GetUserProfilePhotos
pub fn new<U>(user: U) -> GetUserProfilePhotoswhere
U: ToUserId,
pub fn offset(&mut self, offset: i64) -> &mut GetUserProfilePhotos
pub fn limit(&mut self, limit: i64) -> &mut GetUserProfilePhotos
Trait Implementations§
Source§impl Clone for GetUserProfilePhotos
impl Clone for GetUserProfilePhotos
Source§fn clone(&self) -> GetUserProfilePhotos
fn clone(&self) -> GetUserProfilePhotos
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GetUserProfilePhotos
impl Debug for GetUserProfilePhotos
Source§impl PartialEq for GetUserProfilePhotos
impl PartialEq for GetUserProfilePhotos
Source§impl PartialOrd for GetUserProfilePhotos
impl PartialOrd for GetUserProfilePhotos
Source§impl Request for GetUserProfilePhotos
impl Request for GetUserProfilePhotos
type Type = JsonRequestType<GetUserProfilePhotos>
type Response = JsonIdResponse<UserProfilePhotos>
fn serialize(&self) -> Result<HttpRequest, Error>
fn detach(&self) -> DetachedRequest<Self::Response>
Source§impl Serialize for GetUserProfilePhotos
impl Serialize for GetUserProfilePhotos
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for GetUserProfilePhotos
Auto Trait Implementations§
impl Freeze for GetUserProfilePhotos
impl RefUnwindSafe for GetUserProfilePhotos
impl Send for GetUserProfilePhotos
impl Sync for GetUserProfilePhotos
impl Unpin for GetUserProfilePhotos
impl UnwindSafe for GetUserProfilePhotos
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