pub struct PlatformSupportEntry {
pub platform_arch: PlatformArch,
pub support_level: CompatibilityLevel,
pub min_version: Option<String>,
pub max_version: Option<String>,
pub notes: Option<String>,
}Expand description
Platform support matrix entry
Fields§
§platform_arch: PlatformArch§support_level: CompatibilityLevel§min_version: Option<String>§max_version: Option<String>§notes: Option<String>Trait Implementations§
Source§impl Clone for PlatformSupportEntry
impl Clone for PlatformSupportEntry
Source§fn clone(&self) -> PlatformSupportEntry
fn clone(&self) -> PlatformSupportEntry
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 PlatformSupportEntry
impl Debug for PlatformSupportEntry
Source§impl<'de> Deserialize<'de> for PlatformSupportEntry
impl<'de> Deserialize<'de> for PlatformSupportEntry
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 PlatformSupportEntry
impl RefUnwindSafe for PlatformSupportEntry
impl Send for PlatformSupportEntry
impl Sync for PlatformSupportEntry
impl Unpin for PlatformSupportEntry
impl UnsafeUnpin for PlatformSupportEntry
impl UnwindSafe for PlatformSupportEntry
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