[][src]Struct samurai::bucket::bucket_list::BucketList

pub struct BucketList { /* fields omitted */ }

Methods

impl BucketList[src]

pub fn new(max_buckets: usize, max_per_bucket: usize) -> Self[src]

Create a new bucket list. max_bucket: maximum number of buckets max_per_bucket: maximum number of nodes per bucket

pub fn get_closest(&self, id: &Id) -> Vec<Id>[src]

Return the ID of all nodes in the bucket_list sorted by xor distance.

pub fn add_node(&mut self, node: &Node) -> Result<(), BucketError>[src]

Add a new node to the bucket_list

pub fn empty_space(&self) -> bool[src]

Check if you can add more nodes to the bucket_list

pub fn node_list(&self) -> Vec<Node>[src]

Trait Implementations

impl Debug for BucketList[src]

impl<'de> Deserialize<'de> for BucketList[src]

impl Serialize for BucketList[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,