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