pub struct AgentPolicyImportPlan {
pub preview: MutationPlan,
pub skipped: Vec<Value>,
pub package_installs: Vec<String>,
pub total: usize,
/* private fields */
}Expand description
What plan_import computed and apply_import uploads. Public fields are
the guard preview and the summary counts; the rest are the exact
snapshots and bodies apply_import rechecks against before every write.
Fields§
§preview: MutationPlan§skipped: Vec<Value>§package_installs: Vec<String>§total: usizeTrait Implementations§
Source§impl Clone for AgentPolicyImportPlan
impl Clone for AgentPolicyImportPlan
Source§fn clone(&self) -> AgentPolicyImportPlan
fn clone(&self) -> AgentPolicyImportPlan
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 AgentPolicyImportPlan
impl Debug for AgentPolicyImportPlan
Source§impl PartialEq for AgentPolicyImportPlan
impl PartialEq for AgentPolicyImportPlan
impl StructuralPartialEq for AgentPolicyImportPlan
Auto Trait Implementations§
impl Freeze for AgentPolicyImportPlan
impl RefUnwindSafe for AgentPolicyImportPlan
impl Send for AgentPolicyImportPlan
impl Sync for AgentPolicyImportPlan
impl Unpin for AgentPolicyImportPlan
impl UnsafeUnpin for AgentPolicyImportPlan
impl UnwindSafe for AgentPolicyImportPlan
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