#[non_exhaustive]pub struct EmbeddedUser {
pub id: UserId,
pub username: String,
pub avatar_url: Option<String>,
pub url: String,
}Expand description
The creator stub attached to a Tone payload.
Enough to credit and link a tone’s author. There is no fetch-user-by-id endpoint, so
this is all you get for a creator short of searching the directory
(Client::users) by username.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: UserIdThe creator’s account id.
username: StringDisplay name, as shown on TONE3000.
avatar_url: Option<String>Profile picture, if the user set one.
url: StringThe creator’s public profile page on tone3000.com.
Trait Implementations§
Source§impl Clone for EmbeddedUser
impl Clone for EmbeddedUser
Source§fn clone(&self) -> EmbeddedUser
fn clone(&self) -> EmbeddedUser
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EmbeddedUser
impl Debug for EmbeddedUser
Source§impl<'de> Deserialize<'de> for EmbeddedUser
impl<'de> Deserialize<'de> for EmbeddedUser
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 EmbeddedUser
impl RefUnwindSafe for EmbeddedUser
impl Send for EmbeddedUser
impl Sync for EmbeddedUser
impl Unpin for EmbeddedUser
impl UnsafeUnpin for EmbeddedUser
impl UnwindSafe for EmbeddedUser
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