pub struct Producer {
pub id: Option<String>,
pub name: Option<String>,
pub aliases: Option<Vec<String>>,
pub lang: Option<Language>,
pub type: Option<ProducerType>,
pub description: Option<String>,
}Fields§
§id: Option<String>Vndbid
name: Option<String>§aliases: Option<Vec<String>>§lang: Option<Language>Primary langauge
type: Option<ProducerType>§description: Option<String>May contain formatting codes
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Producer
impl<'de> Deserialize<'de> for Producer
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 Producer
impl RefUnwindSafe for Producer
impl Send for Producer
impl Sync for Producer
impl Unpin for Producer
impl UnsafeUnpin for Producer
impl UnwindSafe for Producer
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