pub enum TrainInput {
TokenSequences(Vec<Vec<u32>>),
}Expand description
User-provided training input.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for TrainInput
impl Clone for TrainInput
Source§fn clone(&self) -> TrainInput
fn clone(&self) -> TrainInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TrainInput
impl Debug for TrainInput
Source§impl PartialEq for TrainInput
impl PartialEq for TrainInput
Source§fn eq(&self, other: &TrainInput) -> bool
fn eq(&self, other: &TrainInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TrainInput
impl StructuralPartialEq for TrainInput
Auto Trait Implementations§
impl Freeze for TrainInput
impl RefUnwindSafe for TrainInput
impl Send for TrainInput
impl Sync for TrainInput
impl Unpin for TrainInput
impl UnsafeUnpin for TrainInput
impl UnwindSafe for TrainInput
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.