pub struct SnapshotDelete<'a, 'b> { /* private fields */ }Expand description
Builder for the Snapshot Delete API
Deletes one or more snapshots.
Implementations§
Source§impl<'a, 'b> SnapshotDelete<'a, 'b>
 
impl<'a, 'b> SnapshotDelete<'a, 'b>
Sourcepub fn new(transport: &'a Transport, parts: SnapshotDeleteParts<'b>) -> Self
 
pub fn new(transport: &'a Transport, parts: SnapshotDeleteParts<'b>) -> Self
Creates a new instance of SnapshotDelete with the specified API parts
Sourcepub fn error_trace(self, error_trace: bool) -> Self
 
pub fn error_trace(self, error_trace: bool) -> Self
Include the stack trace of returned errors.
Sourcepub fn filter_path(self, filter_path: &'b [&'b str]) -> Self
 
pub fn filter_path(self, filter_path: &'b [&'b str]) -> Self
A comma-separated list of filters used to reduce the response.
Sourcepub fn header(self, key: HeaderName, value: HeaderValue) -> Self
 
pub fn header(self, key: HeaderName, value: HeaderValue) -> Self
Adds a HTTP header
Sourcepub fn master_timeout(self, master_timeout: &'b str) -> Self
 
pub fn master_timeout(self, master_timeout: &'b str) -> Self
Explicit operation timeout for connection to master node
Sourcepub fn request_timeout(self, timeout: Duration) -> Self
 
pub fn request_timeout(self, timeout: Duration) -> Self
Sets a request timeout for this API call.
The timeout is applied from when the request starts connecting until the response body has finished.
Sourcepub fn source(self, source: &'b str) -> Self
 
pub fn source(self, source: &'b str) -> Self
The URL-encoded request definition. Useful for libraries that do not accept a request body for non-POST requests.
Sourcepub fn wait_for_completion(self, wait_for_completion: bool) -> Self
 
pub fn wait_for_completion(self, wait_for_completion: bool) -> Self
Should this request wait until the operation has completed before returning
Trait Implementations§
Source§impl<'a, 'b> Clone for SnapshotDelete<'a, 'b>
 
impl<'a, 'b> Clone for SnapshotDelete<'a, 'b>
Source§fn clone(&self) -> SnapshotDelete<'a, 'b>
 
fn clone(&self) -> SnapshotDelete<'a, 'b>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreAuto Trait Implementations§
impl<'a, 'b> Freeze for SnapshotDelete<'a, 'b>
impl<'a, 'b> !RefUnwindSafe for SnapshotDelete<'a, 'b>
impl<'a, 'b> Send for SnapshotDelete<'a, 'b>
impl<'a, 'b> Sync for SnapshotDelete<'a, 'b>
impl<'a, 'b> Unpin for SnapshotDelete<'a, 'b>
impl<'a, 'b> !UnwindSafe for SnapshotDelete<'a, 'b>
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