pub struct UpdateConfigResult {
pub id: String,
pub target_k: i32,
pub active_copyset_count_before: i32,
pub copysets_needed: i32,
pub copysets_formed: i32,
pub active_copyset_count_after: i32,
pub partial: bool,
pub reason: Option<String>,
}Fields§
§id: String§target_k: i32§active_copyset_count_before: i32§copysets_needed: i32§copysets_formed: i32§active_copyset_count_after: i32§partial: bool§reason: Option<String>Trait Implementations§
Source§impl Clone for UpdateConfigResult
impl Clone for UpdateConfigResult
Source§fn clone(&self) -> UpdateConfigResult
fn clone(&self) -> UpdateConfigResult
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 UpdateConfigResult
impl Debug for UpdateConfigResult
Source§impl<'de> Deserialize<'de> for UpdateConfigResult
impl<'de> Deserialize<'de> for UpdateConfigResult
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 UpdateConfigResult
impl RefUnwindSafe for UpdateConfigResult
impl Send for UpdateConfigResult
impl Sync for UpdateConfigResult
impl Unpin for UpdateConfigResult
impl UnsafeUnpin for UpdateConfigResult
impl UnwindSafe for UpdateConfigResult
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