pub struct BlockBlobClientGetBlockListOptions<'a> {
pub client_request_id: Option<String>,
pub if_tags: Option<String>,
pub lease_id: Option<String>,
pub method_options: ClientMethodOptions<'a>,
pub snapshot: Option<String>,
pub timeout: Option<i32>,
}
Expand description
Options to be passed to BlockBlobClient::get_block_list()
Fields§
§client_request_id: Option<String>
An opaque, globally-unique, client-generated string identifier for the request.
Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
lease_id: Option<String>
If specified, the operation only succeeds if the resource’s lease is active and matches this ID.
method_options: ClientMethodOptions<'a>
Allows customization of the method call.
snapshot: Option<String>
The snapshot parameter is an opaque DateTime value that, when present, specifies the blob snapshot to retrieve. For more information on working with blob snapshots, see Creating a Snapshot of a Blob.
timeout: Option<i32>
The timeout parameter is expressed in seconds. For more information, see Setting Timeouts for Blob Service Operations.
Trait Implementations§
Source§impl<'a> Clone for BlockBlobClientGetBlockListOptions<'a>
impl<'a> Clone for BlockBlobClientGetBlockListOptions<'a>
Source§fn clone(&self) -> BlockBlobClientGetBlockListOptions<'a>
fn clone(&self) -> BlockBlobClientGetBlockListOptions<'a>
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 moreSource§impl<'a> Debug for BlockBlobClientGetBlockListOptions<'a>
impl<'a> Debug for BlockBlobClientGetBlockListOptions<'a>
Source§impl<'a> Default for BlockBlobClientGetBlockListOptions<'a>
impl<'a> Default for BlockBlobClientGetBlockListOptions<'a>
Source§fn default() -> BlockBlobClientGetBlockListOptions<'a>
fn default() -> BlockBlobClientGetBlockListOptions<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for BlockBlobClientGetBlockListOptions<'a>
impl<'a> !RefUnwindSafe for BlockBlobClientGetBlockListOptions<'a>
impl<'a> Send for BlockBlobClientGetBlockListOptions<'a>
impl<'a> Sync for BlockBlobClientGetBlockListOptions<'a>
impl<'a> Unpin for BlockBlobClientGetBlockListOptions<'a>
impl<'a> !UnwindSafe for BlockBlobClientGetBlockListOptions<'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