pub struct UpdateUserTwitchUsernameBody {
pub username: String,
}Expand description
UpdateUserTwitchUsernameBody
JSON schema
{
"type": "object",
"required": [
"username"
],
"properties": {
"username": {
"type": "string"
}
}
}Fields§
§username: StringTrait Implementations§
Source§impl Clone for UpdateUserTwitchUsernameBody
impl Clone for UpdateUserTwitchUsernameBody
Source§fn clone(&self) -> UpdateUserTwitchUsernameBody
fn clone(&self) -> UpdateUserTwitchUsernameBody
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 UpdateUserTwitchUsernameBody
impl Debug for UpdateUserTwitchUsernameBody
Source§impl<'de> Deserialize<'de> for UpdateUserTwitchUsernameBody
impl<'de> Deserialize<'de> for UpdateUserTwitchUsernameBody
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
Source§impl From<&UpdateUserTwitchUsernameBody> for UpdateUserTwitchUsernameBody
impl From<&UpdateUserTwitchUsernameBody> for UpdateUserTwitchUsernameBody
Source§fn from(value: &UpdateUserTwitchUsernameBody) -> Self
fn from(value: &UpdateUserTwitchUsernameBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UpdateUserTwitchUsernameBody
impl RefUnwindSafe for UpdateUserTwitchUsernameBody
impl Send for UpdateUserTwitchUsernameBody
impl Sync for UpdateUserTwitchUsernameBody
impl Unpin for UpdateUserTwitchUsernameBody
impl UnsafeUnpin for UpdateUserTwitchUsernameBody
impl UnwindSafe for UpdateUserTwitchUsernameBody
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