pub struct ListUserDataRedundancyTransitionResult {
pub is_truncated: bool,
pub next_continuation_token: Option<String>,
pub transitions: Vec<BucketDataRedundancyTransition>,
}Expand description
Response body for ListUserDataRedundancyTransition.
Fields§
§is_truncated: boolWhether more results are available.
next_continuation_token: Option<String>Pagination token to pass back as continuation-token in the next
request. Empty when there are no more results.
transitions: Vec<BucketDataRedundancyTransition>Individual transition tasks. Each <BucketDataRedundancyTransition>
child is one entry.
Trait Implementations§
Source§impl Clone for ListUserDataRedundancyTransitionResult
impl Clone for ListUserDataRedundancyTransitionResult
Source§fn clone(&self) -> ListUserDataRedundancyTransitionResult
fn clone(&self) -> ListUserDataRedundancyTransitionResult
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 Default for ListUserDataRedundancyTransitionResult
impl Default for ListUserDataRedundancyTransitionResult
Source§fn default() -> ListUserDataRedundancyTransitionResult
fn default() -> ListUserDataRedundancyTransitionResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListUserDataRedundancyTransitionResult
impl<'de> Deserialize<'de> for ListUserDataRedundancyTransitionResult
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 ListUserDataRedundancyTransitionResult
impl RefUnwindSafe for ListUserDataRedundancyTransitionResult
impl Send for ListUserDataRedundancyTransitionResult
impl Sync for ListUserDataRedundancyTransitionResult
impl Unpin for ListUserDataRedundancyTransitionResult
impl UnsafeUnpin for ListUserDataRedundancyTransitionResult
impl UnwindSafe for ListUserDataRedundancyTransitionResult
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