pub struct AddNodeResultValue {
pub id: String,
pub hash: u64,
pub keys_added: usize,
}Fields§
§id: StringThe unique identifier of the virtual node.
hash: u64The hash value of the virtual node.
keys_added: usizeThe number of keys that were reassigned to this virtual node.
Implementations§
Source§impl AddNodeResultValue
impl AddNodeResultValue
Sourcepub fn builder() -> AddNodeResultValueBuilder
pub fn builder() -> AddNodeResultValueBuilder
Create an instance of AddNodeResultValue using the builder syntax
Trait Implementations§
Source§impl Debug for AddNodeResultValue
impl Debug for AddNodeResultValue
Source§impl Default for AddNodeResultValue
impl Default for AddNodeResultValue
Source§fn default() -> AddNodeResultValue
fn default() -> AddNodeResultValue
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AddNodeResultValue
impl RefUnwindSafe for AddNodeResultValue
impl Send for AddNodeResultValue
impl Sync for AddNodeResultValue
impl Unpin for AddNodeResultValue
impl UnwindSafe for AddNodeResultValue
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