ConsistentHashingRingBuilder

Struct ConsistentHashingRingBuilder 

Source
pub struct ConsistentHashingRingBuilder<T: RingHasherTrait, S: State = Empty> { /* private fields */ }

Implementations§

Source§

impl<T: RingHasherTrait, S: State> ConsistentHashingRingBuilder<T, S>

Source

pub fn build(self) -> ConsistentHashingRing<T>
where S: IsComplete,

Finish building and return the requested object

Source

pub fn hasher(self, value: T) -> ConsistentHashingRingBuilder<T, SetHasher<S>>
where S::Hasher: IsUnset,

Required.

The hashing function used to compute hash values for keys and nodes.

Source

pub fn replication_factor( self, value: usize, ) -> ConsistentHashingRingBuilder<T, SetReplicationFactor<S>>
where S::ReplicationFactor: IsUnset,

Required.

The number of physical nodes each key is replicated to for fault tolerance.

Source

pub fn hash_to_vid( self, value: BTreeMap<u64, String>, ) -> ConsistentHashingRingBuilder<T, SetHashToVid<S>>
where S::HashToVid: IsUnset,

Required.

A mapping of hash values to virtual node IDs.

Source

pub fn vid_to_pid( self, value: HashMap<String, String>, ) -> ConsistentHashingRingBuilder<T, SetVidToPid<S>>
where S::VidToPid: IsUnset,

Required.

A mapping of virtual node IDs to physical node IDs.

Source

pub fn physicals( self, value: HashMap<String, Rc<RefCell<PhysicalNode>>>, ) -> ConsistentHashingRingBuilder<T, SetPhysicals<S>>
where S::Physicals: IsUnset,

Required.

A mapping of physical node IDs to their corresponding PhysicalNode instances.

Auto Trait Implementations§

§

impl<T, S> Freeze for ConsistentHashingRingBuilder<T, S>
where T: Freeze,

§

impl<T, S = Empty> !RefUnwindSafe for ConsistentHashingRingBuilder<T, S>

§

impl<T, S = Empty> !Send for ConsistentHashingRingBuilder<T, S>

§

impl<T, S = Empty> !Sync for ConsistentHashingRingBuilder<T, S>

§

impl<T, S> Unpin for ConsistentHashingRingBuilder<T, S>
where T: Unpin,

§

impl<T, S = Empty> !UnwindSafe for ConsistentHashingRingBuilder<T, S>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.