pub struct RestorePlan {
pub phases: Vec<RestorePhase>,
}Expand description
RestorePlan
Fields§
§phases: Vec<RestorePhase>Implementations§
Source§impl RestorePlan
impl RestorePlan
Sourcepub fn ordered_members(&self) -> Vec<&RestorePlanMember>
pub fn ordered_members(&self) -> Vec<&RestorePlanMember>
Return all planned members in execution order.
Trait Implementations§
Source§impl Clone for RestorePlan
impl Clone for RestorePlan
Source§fn clone(&self) -> RestorePlan
fn clone(&self) -> RestorePlan
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 RestorePlan
impl Debug for RestorePlan
Source§impl<'de> Deserialize<'de> for RestorePlan
impl<'de> Deserialize<'de> for RestorePlan
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
Source§impl PartialEq for RestorePlan
impl PartialEq for RestorePlan
Source§impl Serialize for RestorePlan
impl Serialize for RestorePlan
impl Eq for RestorePlan
impl StructuralPartialEq for RestorePlan
Auto Trait Implementations§
impl Freeze for RestorePlan
impl RefUnwindSafe for RestorePlan
impl Send for RestorePlan
impl Sync for RestorePlan
impl Unpin for RestorePlan
impl UnsafeUnpin for RestorePlan
impl UnwindSafe for RestorePlan
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