pub struct AddNodeResult {
pub values: Vec<AddNodeResultValue>,
}Expand description
Represents the result of adding a physical node to the consistent hashing ring.
This struct contains information about the virtual nodes created for the added physical node and the number of keys reassigned to each virtual node.
Fields§
§values: Vec<AddNodeResultValue>A list of results for each virtual node created for the added physical node.
Implementations§
Source§impl AddNodeResult
impl AddNodeResult
Sourcepub fn builder() -> AddNodeResultBuilder
pub fn builder() -> AddNodeResultBuilder
Create an instance of AddNodeResult using the builder syntax
Trait Implementations§
Source§impl Debug for AddNodeResult
impl Debug for AddNodeResult
Source§impl Default for AddNodeResult
impl Default for AddNodeResult
Source§fn default() -> AddNodeResult
fn default() -> AddNodeResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AddNodeResult
impl RefUnwindSafe for AddNodeResult
impl Send for AddNodeResult
impl Sync for AddNodeResult
impl Unpin for AddNodeResult
impl UnwindSafe for AddNodeResult
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