pub struct ProfilePatch {
pub name: Patch<String>,
}Expand description
Profile patch for PATCH /me endpoint
Fields§
§name: Patch<String>Trait Implementations§
Source§impl Clone for ProfilePatch
impl Clone for ProfilePatch
Source§fn clone(&self) -> ProfilePatch
fn clone(&self) -> ProfilePatch
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 ProfilePatch
impl Debug for ProfilePatch
Source§impl<'de> Deserialize<'de> for ProfilePatch
impl<'de> Deserialize<'de> for ProfilePatch
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 ProfilePatch
impl RefUnwindSafe for ProfilePatch
impl Send for ProfilePatch
impl Sync for ProfilePatch
impl Unpin for ProfilePatch
impl UnsafeUnpin for ProfilePatch
impl UnwindSafe for ProfilePatch
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