pub struct ListObjectsV2Response {
pub name: String,
pub prefix: String,
pub key_count: u32,
pub max_keys: u32,
pub is_truncated: bool,
pub continuation_token: String,
pub next_continuation_token: String,
pub contents: Vec<ObjectInfo>,
pub common_prefixes: Vec<CommonPrefix>,
}
Expand description
列出对象V2响应
Fields§
§name: String
§prefix: String
§key_count: u32
§max_keys: u32
§is_truncated: bool
§continuation_token: String
§next_continuation_token: String
§contents: Vec<ObjectInfo>
§common_prefixes: Vec<CommonPrefix>
Trait Implementations§
Source§impl Debug for ListObjectsV2Response
impl Debug for ListObjectsV2Response
Source§impl<'de> Deserialize<'de> for ListObjectsV2Response
impl<'de> Deserialize<'de> for ListObjectsV2Response
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 ListObjectsV2Response
impl RefUnwindSafe for ListObjectsV2Response
impl Send for ListObjectsV2Response
impl Sync for ListObjectsV2Response
impl Unpin for ListObjectsV2Response
impl UnwindSafe for ListObjectsV2Response
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