pub struct BuildPlanFromScanItemsWithProviderRequest<'a, I, P> {
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_provider: &'a P,
pub now: SystemTime,
}Fields§
§input: PlanInput§policy: PolicyKind§items: I§scanner_options: &'a ScannerOptions§inventory_options: &'a InventoryOptions§planner_options: &'a PlannerOptions§active_observation_provider: &'a P§now: SystemTimeAuto Trait Implementations§
impl<'a, I, P> Freeze for BuildPlanFromScanItemsWithProviderRequest<'a, I, P>where
I: Freeze,
impl<'a, I, P> RefUnwindSafe for BuildPlanFromScanItemsWithProviderRequest<'a, I, P>where
I: RefUnwindSafe,
P: RefUnwindSafe,
impl<'a, I, P> Send for BuildPlanFromScanItemsWithProviderRequest<'a, I, P>
impl<'a, I, P> Sync for BuildPlanFromScanItemsWithProviderRequest<'a, I, P>
impl<'a, I, P> Unpin for BuildPlanFromScanItemsWithProviderRequest<'a, I, P>where
I: Unpin,
impl<'a, I, P> UnsafeUnpin for BuildPlanFromScanItemsWithProviderRequest<'a, I, P>where
I: UnsafeUnpin,
impl<'a, I, P> UnwindSafe for BuildPlanFromScanItemsWithProviderRequest<'a, I, P>where
I: UnwindSafe,
P: RefUnwindSafe,
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