pub struct PlanRecord {
pub id: String,
pub arn: String,
pub version_id: String,
pub creation_date: DateTime<Utc>,
pub deletion_date: Option<DateTime<Utc>>,
pub last_execution_date: Option<DateTime<Utc>>,
pub creator_request_id: Option<String>,
pub plan: Value,
pub advanced_backup_settings: Value,
pub selections: BTreeMap<String, SelectionRecord>,
pub versions: Vec<PlanVersion>,
}Expand description
A backup plan, keyed by its generated BackupPlanId.
Fields§
§id: String§arn: String§version_id: String§creation_date: DateTime<Utc>§deletion_date: Option<DateTime<Utc>>§last_execution_date: Option<DateTime<Utc>>§creator_request_id: Option<String>§plan: ValueThe BackupPlan object (rules, advanced settings) as sent.
advanced_backup_settings: Value§selections: BTreeMap<String, SelectionRecord>§versions: Vec<PlanVersion>Prior version metadata for ListBackupPlanVersions, newest last.
Trait Implementations§
Source§impl Clone for PlanRecord
impl Clone for PlanRecord
Source§fn clone(&self) -> PlanRecord
fn clone(&self) -> PlanRecord
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 PlanRecord
impl Debug for PlanRecord
Source§impl<'de> Deserialize<'de> for PlanRecord
impl<'de> Deserialize<'de> for PlanRecord
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 PlanRecord
impl RefUnwindSafe for PlanRecord
impl Send for PlanRecord
impl Sync for PlanRecord
impl Unpin for PlanRecord
impl UnsafeUnpin for PlanRecord
impl UnwindSafe for PlanRecord
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