pub struct MigrateDimensionsResponse {
pub migrated: usize,
pub failed: usize,
pub already_current: usize,
pub results: Vec<NamespaceMigrationResult>,
}Expand description
Response from POST /admin/namespaces/migrate-dimensions.
Fields§
§migrated: usizeNumber of namespaces successfully migrated.
failed: usizeNumber of namespaces that failed migration.
already_current: usizeNamespaces already at the target dimension.
results: Vec<NamespaceMigrationResult>Per-namespace results.
Trait Implementations§
Source§impl Clone for MigrateDimensionsResponse
impl Clone for MigrateDimensionsResponse
Source§fn clone(&self) -> MigrateDimensionsResponse
fn clone(&self) -> MigrateDimensionsResponse
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 MigrateDimensionsResponse
impl Debug for MigrateDimensionsResponse
Source§impl<'de> Deserialize<'de> for MigrateDimensionsResponse
impl<'de> Deserialize<'de> for MigrateDimensionsResponse
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 MigrateDimensionsResponse
impl RefUnwindSafe for MigrateDimensionsResponse
impl Send for MigrateDimensionsResponse
impl Sync for MigrateDimensionsResponse
impl Unpin for MigrateDimensionsResponse
impl UnsafeUnpin for MigrateDimensionsResponse
impl UnwindSafe for MigrateDimensionsResponse
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