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