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