pub struct SelectionRecord {
pub selection_id: String,
pub creation_date: DateTime<Utc>,
pub creator_request_id: Option<String>,
pub selection: Value,
}Expand description
A single backup selection attached to a plan.
Fields§
§selection_id: String§creation_date: DateTime<Utc>§creator_request_id: Option<String>§selection: ValueThe BackupSelection object as sent, echoed back on Get.
Trait Implementations§
Source§impl Clone for SelectionRecord
impl Clone for SelectionRecord
Source§fn clone(&self) -> SelectionRecord
fn clone(&self) -> SelectionRecord
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 SelectionRecord
impl Debug for SelectionRecord
Source§impl<'de> Deserialize<'de> for SelectionRecord
impl<'de> Deserialize<'de> for SelectionRecord
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 SelectionRecord
impl RefUnwindSafe for SelectionRecord
impl Send for SelectionRecord
impl Sync for SelectionRecord
impl Unpin for SelectionRecord
impl UnsafeUnpin for SelectionRecord
impl UnwindSafe for SelectionRecord
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