pub struct MetadataArchitectureSupportReport {
pub active_architecture: &'static str,
pub supported_architectures: Vec<&'static str>,
pub unsupported_architectures: Vec<&'static str>,
pub namespace_model: &'static str,
pub persistence_model: &'static str,
pub capabilities: Vec<&'static str>,
pub failure_modes: Vec<&'static str>,
pub caveats: Vec<&'static str>,
pub entries: Vec<MetadataArchitectureSupportEntry>,
}Fields§
§active_architecture: &'static str§supported_architectures: Vec<&'static str>§unsupported_architectures: Vec<&'static str>§namespace_model: &'static str§persistence_model: &'static str§capabilities: Vec<&'static str>§failure_modes: Vec<&'static str>§caveats: Vec<&'static str>§entries: Vec<MetadataArchitectureSupportEntry>Trait Implementations§
Source§impl Clone for MetadataArchitectureSupportReport
impl Clone for MetadataArchitectureSupportReport
Source§fn clone(&self) -> MetadataArchitectureSupportReport
fn clone(&self) -> MetadataArchitectureSupportReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for MetadataArchitectureSupportReport
impl PartialEq for MetadataArchitectureSupportReport
Source§fn eq(&self, other: &MetadataArchitectureSupportReport) -> bool
fn eq(&self, other: &MetadataArchitectureSupportReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MetadataArchitectureSupportReport
impl StructuralPartialEq for MetadataArchitectureSupportReport
Auto Trait Implementations§
impl Freeze for MetadataArchitectureSupportReport
impl RefUnwindSafe for MetadataArchitectureSupportReport
impl Send for MetadataArchitectureSupportReport
impl Sync for MetadataArchitectureSupportReport
impl Unpin for MetadataArchitectureSupportReport
impl UnsafeUnpin for MetadataArchitectureSupportReport
impl UnwindSafe for MetadataArchitectureSupportReport
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