pub struct BdbVersionUpgradeStatus {
pub database_id: Option<i32>,
pub target_redis_version: Option<String>,
pub progress: Option<f64>,
pub upgrade_status: Option<String>,
pub extra: Value,
}
Expand description
BdbVersionUpgradeStatus
Fields§
§database_id: Option<i32>
§target_redis_version: Option<String>
§progress: Option<f64>
§upgrade_status: Option<String>
§extra: Value
Additional fields from the API
Trait Implementations§
Source§impl Clone for BdbVersionUpgradeStatus
impl Clone for BdbVersionUpgradeStatus
Source§fn clone(&self) -> BdbVersionUpgradeStatus
fn clone(&self) -> BdbVersionUpgradeStatus
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 BdbVersionUpgradeStatus
impl Debug for BdbVersionUpgradeStatus
Source§impl<'de> Deserialize<'de> for BdbVersionUpgradeStatus
impl<'de> Deserialize<'de> for BdbVersionUpgradeStatus
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 BdbVersionUpgradeStatus
impl RefUnwindSafe for BdbVersionUpgradeStatus
impl Send for BdbVersionUpgradeStatus
impl Sync for BdbVersionUpgradeStatus
impl Unpin for BdbVersionUpgradeStatus
impl UnwindSafe for BdbVersionUpgradeStatus
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