#[non_exhaustive]pub enum ProgressScope {
Region(BoundedString<64>),
KmsIdentifier(BoundedString<64>),
}Expand description
Progress scope selector for multi-region / multi-KMS erasure progress (TypeCode reservation).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Region(BoundedString<64>)
Region scope — geographic / cloud region identifier.
KmsIdentifier(BoundedString<64>)
KMS identifier scope.
Trait Implementations§
Source§impl Clone for ProgressScope
impl Clone for ProgressScope
Source§fn clone(&self) -> ProgressScope
fn clone(&self) -> ProgressScope
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProgressScope
impl Debug for ProgressScope
Source§impl<'de> Deserialize<'de> for ProgressScope
impl<'de> Deserialize<'de> for ProgressScope
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
Source§impl PartialEq for ProgressScope
impl PartialEq for ProgressScope
Source§fn eq(&self, other: &ProgressScope) -> bool
fn eq(&self, other: &ProgressScope) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProgressScope
impl Serialize for ProgressScope
impl Eq for ProgressScope
impl StructuralPartialEq for ProgressScope
Auto Trait Implementations§
impl Freeze for ProgressScope
impl RefUnwindSafe for ProgressScope
impl Send for ProgressScope
impl Sync for ProgressScope
impl Unpin for ProgressScope
impl UnsafeUnpin for ProgressScope
impl UnwindSafe for ProgressScope
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