pub struct WantlistEntry {
pub id: u64,
pub resource_url: String,
pub notes: Option<String>,
pub rating: Option<u8>,
pub basic_information: Option<WantlistBasicInformation>,
pub extra: ExtraFields,
}Fields§
§id: u64§resource_url: String§notes: Option<String>§rating: Option<u8>§basic_information: Option<WantlistBasicInformation>§extra: ExtraFieldsTrait Implementations§
Source§impl Clone for WantlistEntry
impl Clone for WantlistEntry
Source§fn clone(&self) -> WantlistEntry
fn clone(&self) -> WantlistEntry
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 WantlistEntry
impl Debug for WantlistEntry
Source§impl<'de> Deserialize<'de> for WantlistEntry
impl<'de> Deserialize<'de> for WantlistEntry
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 WantlistEntry
impl RefUnwindSafe for WantlistEntry
impl Send for WantlistEntry
impl Sync for WantlistEntry
impl Unpin for WantlistEntry
impl UnsafeUnpin for WantlistEntry
impl UnwindSafe for WantlistEntry
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