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