pub struct InputProfilePhotoStatic {
pub photo: String,
}Expand description
A static profile photo in JPEG format.
Fields§
§photo: StringThe photo file.
Profile photos cannot be reused — upload as a new file using
"attach://<n>" via multipart/form-data.
Trait Implementations§
Source§impl Clone for InputProfilePhotoStatic
impl Clone for InputProfilePhotoStatic
Source§fn clone(&self) -> InputProfilePhotoStatic
fn clone(&self) -> InputProfilePhotoStatic
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 InputProfilePhotoStatic
impl Debug for InputProfilePhotoStatic
Source§impl<'de> Deserialize<'de> for InputProfilePhotoStatic
impl<'de> Deserialize<'de> for InputProfilePhotoStatic
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
Auto Trait Implementations§
impl Freeze for InputProfilePhotoStatic
impl RefUnwindSafe for InputProfilePhotoStatic
impl Send for InputProfilePhotoStatic
impl Sync for InputProfilePhotoStatic
impl Unpin for InputProfilePhotoStatic
impl UnsafeUnpin for InputProfilePhotoStatic
impl UnwindSafe for InputProfilePhotoStatic
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