pub struct Biography {
pub content: Option<String>,
pub summary: Option<String>,
pub source: Option<String>,
}Expand description
Biography model containing information about an artist’s biography
This struct represents an artist’s biography with content, summary, and source information.
§Examples
use qobuz_api_rust::models::Biography;
let biography = Biography {
content: Some("Full biography content...".to_string()),
summary: Some("Brief summary...".to_string()),
source: Some("Official biography".to_string()),
};Fields§
§content: Option<String>Full content of the biography
summary: Option<String>Summary of the biography
source: Option<String>Source of the biography information
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Biography
impl<'de> Deserialize<'de> for Biography
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 Biography
impl RefUnwindSafe for Biography
impl Send for Biography
impl Sync for Biography
impl Unpin for Biography
impl UnwindSafe for Biography
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