pub struct BackupUnit {
pub unit_id: String,
pub kind: BackupUnitKind,
pub roles: Vec<String>,
pub consistency_reason: Option<String>,
pub dependency_closure: Vec<String>,
pub topology_validation: String,
pub quiescence_strategy: Option<String>,
}Expand description
BackupUnit
Fields§
§unit_id: String§kind: BackupUnitKind§roles: Vec<String>§consistency_reason: Option<String>§dependency_closure: Vec<String>§topology_validation: String§quiescence_strategy: Option<String>Trait Implementations§
Source§impl Clone for BackupUnit
impl Clone for BackupUnit
Source§fn clone(&self) -> BackupUnit
fn clone(&self) -> BackupUnit
Returns a duplicate of the value. Read more
1.0.0 · 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 BackupUnit
impl Debug for BackupUnit
Source§impl<'de> Deserialize<'de> for BackupUnit
impl<'de> Deserialize<'de> for BackupUnit
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BackupUnit
impl RefUnwindSafe for BackupUnit
impl Send for BackupUnit
impl Sync for BackupUnit
impl Unpin for BackupUnit
impl UnsafeUnpin for BackupUnit
impl UnwindSafe for BackupUnit
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