pub struct ArchiveContainersRequest<'a> {
pub container_ids: Vec<String>,
pub reason: String,
pub should_remove_barcodes: Option<bool>,
/* private fields */
}Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§container_ids: Vec<String>§reason: String§should_remove_barcodes: Option<bool>Implementations§
Source§impl<'a> ArchiveContainersRequest<'a>
impl<'a> ArchiveContainersRequest<'a>
pub async fn send(self) -> Result<ContainersArchivalChange>
pub fn should_remove_barcodes(self, should_remove_barcodes: bool) -> Self
Auto Trait Implementations§
impl<'a> Freeze for ArchiveContainersRequest<'a>
impl<'a> !RefUnwindSafe for ArchiveContainersRequest<'a>
impl<'a> Send for ArchiveContainersRequest<'a>
impl<'a> Sync for ArchiveContainersRequest<'a>
impl<'a> Unpin for ArchiveContainersRequest<'a>
impl<'a> !UnwindSafe for ArchiveContainersRequest<'a>
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