pub struct ExportBackupPlanTemplateOutput {
pub backup_plan_template_json: Option<String>,
}
Fields§
§backup_plan_template_json: Option<String>
The body of a backup plan template in JSON format.
This is a signed JSON document that cannot be modified before being passed to GetBackupPlanFromJSON.
Trait Implementations§
Source§impl Clone for ExportBackupPlanTemplateOutput
impl Clone for ExportBackupPlanTemplateOutput
Source§fn clone(&self) -> ExportBackupPlanTemplateOutput
fn clone(&self) -> ExportBackupPlanTemplateOutput
Returns a copy 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 Default for ExportBackupPlanTemplateOutput
impl Default for ExportBackupPlanTemplateOutput
Source§fn default() -> ExportBackupPlanTemplateOutput
fn default() -> ExportBackupPlanTemplateOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExportBackupPlanTemplateOutput
impl<'de> Deserialize<'de> for ExportBackupPlanTemplateOutput
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 ExportBackupPlanTemplateOutput
impl PartialEq for ExportBackupPlanTemplateOutput
Source§fn eq(&self, other: &ExportBackupPlanTemplateOutput) -> bool
fn eq(&self, other: &ExportBackupPlanTemplateOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ExportBackupPlanTemplateOutput
Auto Trait Implementations§
impl Freeze for ExportBackupPlanTemplateOutput
impl RefUnwindSafe for ExportBackupPlanTemplateOutput
impl Send for ExportBackupPlanTemplateOutput
impl Sync for ExportBackupPlanTemplateOutput
impl Unpin for ExportBackupPlanTemplateOutput
impl UnwindSafe for ExportBackupPlanTemplateOutput
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