pub struct StorageVersionMigrationStatus {
pub conditions: Option<Vec<MigrationCondition>>,
pub resource_version: Option<String>,
}
Expand description
Status of the storage version migration.
Fields§
§conditions: Option<Vec<MigrationCondition>>
The latest available observations of the migration’s current state.
resource_version: Option<String>
ResourceVersion to compare with the GC cache for performing the migration. This is the current resource version of given group, version and resource when kube-controller-manager first observes this StorageVersionMigration resource.
Trait Implementations§
Source§impl Clone for StorageVersionMigrationStatus
impl Clone for StorageVersionMigrationStatus
Source§fn clone(&self) -> StorageVersionMigrationStatus
fn clone(&self) -> StorageVersionMigrationStatus
Returns a copy 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 DeepMerge for StorageVersionMigrationStatus
impl DeepMerge for StorageVersionMigrationStatus
Source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.Source§impl Default for StorageVersionMigrationStatus
impl Default for StorageVersionMigrationStatus
Source§fn default() -> StorageVersionMigrationStatus
fn default() -> StorageVersionMigrationStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StorageVersionMigrationStatus
impl<'de> Deserialize<'de> for StorageVersionMigrationStatus
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 JsonSchema for StorageVersionMigrationStatus
impl JsonSchema for StorageVersionMigrationStatus
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn json_schema(__gen: &mut SchemaGenerator) -> Schema
fn json_schema(__gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreSource§impl PartialEq for StorageVersionMigrationStatus
impl PartialEq for StorageVersionMigrationStatus
Source§fn eq(&self, other: &StorageVersionMigrationStatus) -> bool
fn eq(&self, other: &StorageVersionMigrationStatus) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for StorageVersionMigrationStatus
Auto Trait Implementations§
impl Freeze for StorageVersionMigrationStatus
impl RefUnwindSafe for StorageVersionMigrationStatus
impl Send for StorageVersionMigrationStatus
impl Sync for StorageVersionMigrationStatus
impl Unpin for StorageVersionMigrationStatus
impl UnwindSafe for StorageVersionMigrationStatus
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