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