pub struct Gnu<'a> { /* private fields */ }
Expand description
Structure that wraps the GNU-hash implementation
Implementations§
§impl Gnu<'_>
impl Gnu<'_>
pub fn nb_buckets(&self) -> u32
pub fn nb_buckets(&self) -> u32
Number of buckets used in this hash table
pub fn symbol_index(&self) -> u32
pub fn symbol_index(&self) -> u32
Index of the first symbol in the dynamic symbols table which accessible with the hash table
pub fn bloom_filters(&self) -> Vec<u64>
pub fn bloom_filters(&self) -> Vec<u64>
Bloom filters
pub fn hash_values(&self) -> Vec<u32>
pub fn hash_values(&self) -> Vec<u32>
Hash values
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Gnu<'a>
impl<'a> !Send for Gnu<'a>
impl<'a> !Sync for Gnu<'a>
impl<'a> Unpin for Gnu<'a>
impl<'a> UnwindSafe for Gnu<'a>
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