pub struct CompatibilitySpec {
pub min_app_version: String,
pub max_app_version: Option<String>,
pub platforms: Vec<String>,
}Fields§
§min_app_version: String§max_app_version: Option<String>§platforms: Vec<String>Trait Implementations§
Source§impl Clone for CompatibilitySpec
impl Clone for CompatibilitySpec
Source§fn clone(&self) -> CompatibilitySpec
fn clone(&self) -> CompatibilitySpec
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 CompatibilitySpec
impl Debug for CompatibilitySpec
Source§impl<'de> Deserialize<'de> for CompatibilitySpec
impl<'de> Deserialize<'de> for CompatibilitySpec
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 CompatibilitySpec
impl RefUnwindSafe for CompatibilitySpec
impl Send for CompatibilitySpec
impl Sync for CompatibilitySpec
impl Unpin for CompatibilitySpec
impl UnsafeUnpin for CompatibilitySpec
impl UnwindSafe for CompatibilitySpec
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