pub struct UserPhoto {
pub image_21x21: Option<String>,
pub image_27x27: Option<String>,
pub image_36x36: Option<String>,
pub image_60x60: Option<String>,
pub image_128x128: Option<String>,
}Expand description
User photo URLs at different sizes.
Fields§
§image_21x21: Option<String>21x21 pixel image URL.
image_27x27: Option<String>27x27 pixel image URL.
image_36x36: Option<String>36x36 pixel image URL.
image_60x60: Option<String>60x60 pixel image URL.
image_128x128: Option<String>128x128 pixel image URL.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UserPhoto
impl<'de> Deserialize<'de> for UserPhoto
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for UserPhoto
impl StructuralPartialEq for UserPhoto
Auto Trait Implementations§
impl Freeze for UserPhoto
impl RefUnwindSafe for UserPhoto
impl Send for UserPhoto
impl Sync for UserPhoto
impl Unpin for UserPhoto
impl UnsafeUnpin for UserPhoto
impl UnwindSafe for UserPhoto
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