#[non_exhaustive]pub struct GenericPlatformDetails {
pub location: String,
/* private fields */
}Expand description
Generic platform details.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.location: StringFree text representation of the machine location. The format of this field should not be relied on. Different VMs in the same location may have different string values for this field.
Implementations§
Trait Implementations§
Source§impl Clone for GenericPlatformDetails
impl Clone for GenericPlatformDetails
Source§fn clone(&self) -> GenericPlatformDetails
fn clone(&self) -> GenericPlatformDetails
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 GenericPlatformDetails
impl Debug for GenericPlatformDetails
Source§impl Default for GenericPlatformDetails
impl Default for GenericPlatformDetails
Source§fn default() -> GenericPlatformDetails
fn default() -> GenericPlatformDetails
Returns the “default value” for a type. Read more
Source§impl Message for GenericPlatformDetails
impl Message for GenericPlatformDetails
Source§impl PartialEq for GenericPlatformDetails
impl PartialEq for GenericPlatformDetails
impl StructuralPartialEq for GenericPlatformDetails
Auto Trait Implementations§
impl Freeze for GenericPlatformDetails
impl RefUnwindSafe for GenericPlatformDetails
impl Send for GenericPlatformDetails
impl Sync for GenericPlatformDetails
impl Unpin for GenericPlatformDetails
impl UnsafeUnpin for GenericPlatformDetails
impl UnwindSafe for GenericPlatformDetails
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