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