pub struct BuildPlanFromScanItemsRequest<'a, I> {
pub input: PlanInput,
pub policy: PolicyKind,
pub items: I,
pub scanner_options: &'a ScannerOptions,
pub inventory_options: &'a InventoryOptions,
pub planner_options: &'a PlannerOptions,
pub active_observation: &'a ActiveObservation,
pub now: SystemTime,
}Fields§
§input: PlanInput§policy: PolicyKind§items: I§scanner_options: &'a ScannerOptions§inventory_options: &'a InventoryOptions§planner_options: &'a PlannerOptions§active_observation: &'a ActiveObservation§now: SystemTimeAuto Trait Implementations§
impl<'a, I> Freeze for BuildPlanFromScanItemsRequest<'a, I>where
I: Freeze,
impl<'a, I> RefUnwindSafe for BuildPlanFromScanItemsRequest<'a, I>where
I: RefUnwindSafe,
impl<'a, I> Send for BuildPlanFromScanItemsRequest<'a, I>where
I: Send,
impl<'a, I> Sync for BuildPlanFromScanItemsRequest<'a, I>where
I: Sync,
impl<'a, I> Unpin for BuildPlanFromScanItemsRequest<'a, I>where
I: Unpin,
impl<'a, I> UnsafeUnpin for BuildPlanFromScanItemsRequest<'a, I>where
I: UnsafeUnpin,
impl<'a, I> UnwindSafe for BuildPlanFromScanItemsRequest<'a, I>where
I: UnwindSafe,
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more