pub struct Vectorscope {}Trait Implementations§
Source§impl Default for Vectorscope
impl Default for Vectorscope
Source§fn default() -> Vectorscope
fn default() -> Vectorscope
Returns the “default value” for a type. Read more
Source§impl DisplayMode for Vectorscope
impl DisplayMode for Vectorscope
fn mode_str(&self) -> &'static str
fn channel_name(&self, index: usize) -> String
fn header(&self, _: &GraphConfig) -> String
fn axis(&self, cfg: &GraphConfig, dimension: Dimension) -> Axis<'_>
fn references(&self, cfg: &GraphConfig) -> Vec<DataSet>
fn process(&mut self, cfg: &GraphConfig, data: &Matrix<f64>) -> Vec<DataSet>
fn handle(&mut self, _event: Event)
Auto Trait Implementations§
impl Freeze for Vectorscope
impl RefUnwindSafe for Vectorscope
impl Send for Vectorscope
impl Sync for Vectorscope
impl Unpin for Vectorscope
impl UnsafeUnpin for Vectorscope
impl UnwindSafe for Vectorscope
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<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more