#[non_exhaustive]pub struct ListBlobsFlatSegmentResponse {
pub container_name: Option<String>,
pub marker: Option<String>,
pub max_results: Option<i32>,
pub next_marker: Option<String>,
pub prefix: Option<String>,
pub segment: BlobFlatListSegment,
pub service_endpoint: Option<String>,
}
Expand description
An enumeration of blobs.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.container_name: Option<String>
The container name.
marker: Option<String>
The marker of the blobs.
max_results: Option<i32>
The max results of the blobs.
next_marker: Option<String>
The next marker of the blobs.
prefix: Option<String>
The prefix of the blobs.
segment: BlobFlatListSegment
The blob segment.
service_endpoint: Option<String>
The service endpoint.
Trait Implementations§
Source§impl Clone for ListBlobsFlatSegmentResponse
impl Clone for ListBlobsFlatSegmentResponse
Source§fn clone(&self) -> ListBlobsFlatSegmentResponse
fn clone(&self) -> ListBlobsFlatSegmentResponse
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 Debug for ListBlobsFlatSegmentResponse
impl Debug for ListBlobsFlatSegmentResponse
Source§impl Default for ListBlobsFlatSegmentResponse
impl Default for ListBlobsFlatSegmentResponse
Source§fn default() -> ListBlobsFlatSegmentResponse
fn default() -> ListBlobsFlatSegmentResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListBlobsFlatSegmentResponse
impl<'de> Deserialize<'de> for ListBlobsFlatSegmentResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ListBlobsFlatSegmentResponse
impl RefUnwindSafe for ListBlobsFlatSegmentResponse
impl Send for ListBlobsFlatSegmentResponse
impl Sync for ListBlobsFlatSegmentResponse
impl Unpin for ListBlobsFlatSegmentResponse
impl UnwindSafe for ListBlobsFlatSegmentResponse
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