pub struct PlacementDomainSupportReport {
pub active_profile: &'static str,
pub supported_domains: Vec<&'static str>,
pub unsupported_domains: Vec<&'static str>,
pub default_failure_domain: &'static str,
pub affinity_policy: &'static str,
pub capabilities: Vec<&'static str>,
pub failure_modes: Vec<&'static str>,
pub caveats: Vec<&'static str>,
pub entries: Vec<PlacementDomainSupportEntry>,
}Fields§
§active_profile: &'static str§supported_domains: Vec<&'static str>§unsupported_domains: Vec<&'static str>§default_failure_domain: &'static str§affinity_policy: &'static str§capabilities: Vec<&'static str>§failure_modes: Vec<&'static str>§caveats: Vec<&'static str>§entries: Vec<PlacementDomainSupportEntry>Trait Implementations§
Source§impl Clone for PlacementDomainSupportReport
impl Clone for PlacementDomainSupportReport
Source§fn clone(&self) -> PlacementDomainSupportReport
fn clone(&self) -> PlacementDomainSupportReport
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 Debug for PlacementDomainSupportReport
impl Debug for PlacementDomainSupportReport
Source§impl PartialEq for PlacementDomainSupportReport
impl PartialEq for PlacementDomainSupportReport
Source§fn eq(&self, other: &PlacementDomainSupportReport) -> bool
fn eq(&self, other: &PlacementDomainSupportReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PlacementDomainSupportReport
impl StructuralPartialEq for PlacementDomainSupportReport
Auto Trait Implementations§
impl Freeze for PlacementDomainSupportReport
impl RefUnwindSafe for PlacementDomainSupportReport
impl Send for PlacementDomainSupportReport
impl Sync for PlacementDomainSupportReport
impl Unpin for PlacementDomainSupportReport
impl UnsafeUnpin for PlacementDomainSupportReport
impl UnwindSafe for PlacementDomainSupportReport
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