pub struct PlatformFramework {
pub name: Option<String>,
pub version: Option<String>,
}
Expand description
A framework supported by the platform.
Fields§
§name: Option<String>
The name of the framework.
version: Option<String>
The version of the framework.
Trait Implementations§
Source§impl Clone for PlatformFramework
impl Clone for PlatformFramework
Source§fn clone(&self) -> PlatformFramework
fn clone(&self) -> PlatformFramework
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 PlatformFramework
impl Debug for PlatformFramework
Source§impl Default for PlatformFramework
impl Default for PlatformFramework
Source§fn default() -> PlatformFramework
fn default() -> PlatformFramework
Returns the “default value” for a type. Read more
Source§impl PartialEq for PlatformFramework
impl PartialEq for PlatformFramework
impl StructuralPartialEq for PlatformFramework
Auto Trait Implementations§
impl Freeze for PlatformFramework
impl RefUnwindSafe for PlatformFramework
impl Send for PlatformFramework
impl Sync for PlatformFramework
impl Unpin for PlatformFramework
impl UnwindSafe for PlatformFramework
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