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