pub struct ReleaseIdentifiers {
pub upc: Option<String>,
pub ean: Option<String>,
pub catalog_number: Option<String>,
pub grid: Option<String>,
pub proprietary: Vec<ProprietaryId>,
}
Fields§
§upc: Option<String>
§ean: Option<String>
§catalog_number: Option<String>
§grid: Option<String>
§proprietary: Vec<ProprietaryId>
Trait Implementations§
Source§impl Clone for ReleaseIdentifiers
impl Clone for ReleaseIdentifiers
Source§fn clone(&self) -> ReleaseIdentifiers
fn clone(&self) -> ReleaseIdentifiers
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 ReleaseIdentifiers
impl Debug for ReleaseIdentifiers
Source§impl<'de> Deserialize<'de> for ReleaseIdentifiers
impl<'de> Deserialize<'de> for ReleaseIdentifiers
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 ReleaseIdentifiers
impl RefUnwindSafe for ReleaseIdentifiers
impl Send for ReleaseIdentifiers
impl Sync for ReleaseIdentifiers
impl Unpin for ReleaseIdentifiers
impl UnwindSafe for ReleaseIdentifiers
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