pub struct AppVersionList {
pub version_codes: Option<Vec<i64>>,
}Expand description
Data format for a list of app versions.
This type is not used in any activity, and only used as part of another schema.
Fields§
§version_codes: Option<Vec<i64>>List of app version codes.
Trait Implementations§
Source§impl Clone for AppVersionList
impl Clone for AppVersionList
Source§fn clone(&self) -> AppVersionList
fn clone(&self) -> AppVersionList
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 AppVersionList
impl Debug for AppVersionList
Source§impl Default for AppVersionList
impl Default for AppVersionList
Source§fn default() -> AppVersionList
fn default() -> AppVersionList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AppVersionList
impl<'de> Deserialize<'de> for AppVersionList
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 Serialize for AppVersionList
impl Serialize for AppVersionList
impl Part for AppVersionList
Auto Trait Implementations§
impl Freeze for AppVersionList
impl RefUnwindSafe for AppVersionList
impl Send for AppVersionList
impl Sync for AppVersionList
impl Unpin for AppVersionList
impl UnwindSafe for AppVersionList
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