pub struct BatchPlan {
pub policy: BatchPolicy,
pub items: Vec<BatchItem>,
pub savings_bytes: u64,
pub lossy_items: usize,
pub warning_items: usize,
pub cross_format_items: usize,
pub token: String,
}Fields§
§policy: BatchPolicy§items: Vec<BatchItem>§savings_bytes: u64§lossy_items: usize§warning_items: usize§cross_format_items: usize§token: StringMust accompany the apply request so the confirmed plan is the one run.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BatchPlan
impl RefUnwindSafe for BatchPlan
impl Send for BatchPlan
impl Sync for BatchPlan
impl Unpin for BatchPlan
impl UnsafeUnpin for BatchPlan
impl UnwindSafe for BatchPlan
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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