pub struct AddonMetadataCollection {
pub name: String,
pub overview: Option<String>,
pub sort_order: Option<u32>,
pub external_ids: Vec<AddonMetadataExternalId>,
}Fields§
§name: String§overview: Option<String>§sort_order: Option<u32>§external_ids: Vec<AddonMetadataExternalId>Trait Implementations§
Source§impl Clone for AddonMetadataCollection
impl Clone for AddonMetadataCollection
Source§fn clone(&self) -> AddonMetadataCollection
fn clone(&self) -> AddonMetadataCollection
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 AddonMetadataCollection
impl Debug for AddonMetadataCollection
Source§impl<'de> Deserialize<'de> for AddonMetadataCollection
impl<'de> Deserialize<'de> for AddonMetadataCollection
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
Source§impl PartialEq for AddonMetadataCollection
impl PartialEq for AddonMetadataCollection
Source§fn eq(&self, other: &AddonMetadataCollection) -> bool
fn eq(&self, other: &AddonMetadataCollection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AddonMetadataCollection
impl Serialize for AddonMetadataCollection
impl Eq for AddonMetadataCollection
impl StructuralPartialEq for AddonMetadataCollection
Auto Trait Implementations§
impl Freeze for AddonMetadataCollection
impl RefUnwindSafe for AddonMetadataCollection
impl Send for AddonMetadataCollection
impl Sync for AddonMetadataCollection
impl Unpin for AddonMetadataCollection
impl UnsafeUnpin for AddonMetadataCollection
impl UnwindSafe for AddonMetadataCollection
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