pub enum PatternUpdateMsg {
UpdateColumn {
col: usize,
col_type: PatternColType,
pattern_len: usize,
data: [(f32, u8); 256],
},
}
Variants
UpdateColumn
Trait Implementations
sourceimpl Clone for PatternUpdateMsg
impl Clone for PatternUpdateMsg
sourcefn clone(&self) -> PatternUpdateMsg
fn clone(&self) -> PatternUpdateMsg
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for PatternUpdateMsg
impl Debug for PatternUpdateMsg
impl Copy for PatternUpdateMsg
Auto Trait Implementations
impl RefUnwindSafe for PatternUpdateMsg
impl Send for PatternUpdateMsg
impl Sync for PatternUpdateMsg
impl Unpin for PatternUpdateMsg
impl UnwindSafe for PatternUpdateMsg
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more