pub struct AdoptionReportRequest<'a> {
pub report_id: &'a str,
pub generated_at: &'a str,
pub profile: AdoptionProfileV1,
pub config_source: &'a str,
pub inventory: Option<&'a DeploymentInventoryV1>,
pub artifact_manifest: Option<&'a RoleArtifactManifestV1>,
pub package_metadata: Vec<AdoptionPackageMetadataV1>,
}Expand description
AdoptionReportRequest
Fields§
§report_id: &'a str§generated_at: &'a str§profile: AdoptionProfileV1§config_source: &'a str§inventory: Option<&'a DeploymentInventoryV1>§artifact_manifest: Option<&'a RoleArtifactManifestV1>§package_metadata: Vec<AdoptionPackageMetadataV1>Trait Implementations§
Source§impl<'a> Clone for AdoptionReportRequest<'a>
impl<'a> Clone for AdoptionReportRequest<'a>
Source§fn clone(&self) -> AdoptionReportRequest<'a>
fn clone(&self) -> AdoptionReportRequest<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for AdoptionReportRequest<'a>
impl<'a> RefUnwindSafe for AdoptionReportRequest<'a>
impl<'a> Send for AdoptionReportRequest<'a>
impl<'a> Sync for AdoptionReportRequest<'a>
impl<'a> Unpin for AdoptionReportRequest<'a>
impl<'a> UnsafeUnpin for AdoptionReportRequest<'a>
impl<'a> UnwindSafe for AdoptionReportRequest<'a>
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