pub struct AppMetadata {
pub categories: Option<Vec<String>>,
pub developer: Option<String>,
pub first_party_requires_install: Option<bool>,
pub first_party_type: Option<String>,
pub review: Option<AppReview>,
pub screenshots: Option<Vec<AppScreenshot>>,
pub seo_description: Option<String>,
pub show_in_composer_when_unlinked: Option<bool>,
pub sub_categories: Option<Vec<String>>,
pub version: Option<String>,
pub version_id: Option<String>,
pub version_notes: Option<String>,
}Fields§
§categories: Option<Vec<String>>§developer: Option<String>§first_party_requires_install: Option<bool>§first_party_type: Option<String>§review: Option<AppReview>§screenshots: Option<Vec<AppScreenshot>>§seo_description: Option<String>§show_in_composer_when_unlinked: Option<bool>§sub_categories: Option<Vec<String>>§version: Option<String>§version_id: Option<String>§version_notes: Option<String>Trait Implementations§
Source§impl Clone for AppMetadata
impl Clone for AppMetadata
Source§fn clone(&self) -> AppMetadata
fn clone(&self) -> AppMetadata
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 AppMetadata
impl Debug for AppMetadata
Source§impl<'de> Deserialize<'de> for AppMetadata
impl<'de> Deserialize<'de> for AppMetadata
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 AppMetadata
impl PartialEq for AppMetadata
Source§fn eq(&self, other: &AppMetadata) -> bool
fn eq(&self, other: &AppMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AppMetadata
impl Serialize for AppMetadata
impl StructuralPartialEq for AppMetadata
Auto Trait Implementations§
impl Freeze for AppMetadata
impl RefUnwindSafe for AppMetadata
impl Send for AppMetadata
impl Sync for AppMetadata
impl Unpin for AppMetadata
impl UnsafeUnpin for AppMetadata
impl UnwindSafe for AppMetadata
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