pub struct IntegrationPolicyImportReport {
pub applied: bool,
pub succeeded: Vec<Value>,
pub unchanged: Vec<Value>,
pub skipped: Vec<Value>,
pub failed: Vec<Value>,
pub total: usize,
pub affected_agents: u64,
pub package_installs: Vec<String>,
}Fields§
§applied: bool§succeeded: Vec<Value>§unchanged: Vec<Value>§skipped: Vec<Value>§failed: Vec<Value>§total: usize§affected_agents: u64§package_installs: Vec<String>Trait Implementations§
Source§impl Clone for IntegrationPolicyImportReport
impl Clone for IntegrationPolicyImportReport
Source§fn clone(&self) -> IntegrationPolicyImportReport
fn clone(&self) -> IntegrationPolicyImportReport
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 moreimpl StructuralPartialEq for IntegrationPolicyImportReport
Auto Trait Implementations§
impl Freeze for IntegrationPolicyImportReport
impl RefUnwindSafe for IntegrationPolicyImportReport
impl Send for IntegrationPolicyImportReport
impl Sync for IntegrationPolicyImportReport
impl Unpin for IntegrationPolicyImportReport
impl UnsafeUnpin for IntegrationPolicyImportReport
impl UnwindSafe for IntegrationPolicyImportReport
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