pub struct ObjectVersionListResult {
pub items: Vec<ObjectVersion>,
pub truncated: bool,
pub continuation_token: Option<String>,
pub version_id_marker: Option<String>,
}Expand description
Result of an object version list operation
Fields§
§items: Vec<ObjectVersion>Listed object versions and delete markers
truncated: boolWhether the result is truncated (more items available)
continuation_token: Option<String>Continuation key marker for pagination
version_id_marker: Option<String>Continuation version marker for pagination
Trait Implementations§
Source§impl Clone for ObjectVersionListResult
impl Clone for ObjectVersionListResult
Source§fn clone(&self) -> ObjectVersionListResult
fn clone(&self) -> ObjectVersionListResult
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 ObjectVersionListResult
impl Debug for ObjectVersionListResult
Source§impl<'de> Deserialize<'de> for ObjectVersionListResult
impl<'de> Deserialize<'de> for ObjectVersionListResult
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 ObjectVersionListResult
impl RefUnwindSafe for ObjectVersionListResult
impl Send for ObjectVersionListResult
impl Sync for ObjectVersionListResult
impl Unpin for ObjectVersionListResult
impl UnsafeUnpin for ObjectVersionListResult
impl UnwindSafe for ObjectVersionListResult
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