pub struct CompiledNext {
pub words: Vec<String>,
pub cumulative_weights: Vec<usize>,
}Expand description
Cumulative frequency data for efficient random selection
Fields§
§words: Vec<String>§cumulative_weights: Vec<usize>Trait Implementations§
Source§impl Clone for CompiledNext
impl Clone for CompiledNext
Source§fn clone(&self) -> CompiledNext
fn clone(&self) -> CompiledNext
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CompiledNext
impl Debug for CompiledNext
Source§impl<'de> Deserialize<'de> for CompiledNext
impl<'de> Deserialize<'de> for CompiledNext
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CompiledNext
impl RefUnwindSafe for CompiledNext
impl Send for CompiledNext
impl Sync for CompiledNext
impl Unpin for CompiledNext
impl UnsafeUnpin for CompiledNext
impl UnwindSafe for CompiledNext
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