Struct gmt_dos_clients::signals::Signals

source ·
pub struct Signals {
    pub signals: Vec<Signal>,
    pub step: usize,
    pub n_step: usize,
    /* private fields */
}
Expand description

Multiplex signals generator

Fields§

§signals: Vec<Signal>§step: usize§n_step: usize

Implementations§

source§

impl Signals

source

pub fn new(n: usize, n_step: usize) -> Self

Create a signal generator with n channels for n_step iterations

Each channel is set to 0 valued Signal::Constant

source

pub fn signals(self, signal: Signal) -> Self

👎Deprecated: please use channels instead

Sets the same Signal for all outputs

source

pub fn output_signal(self, k: usize, output_signal: Signal) -> Self

👎Deprecated: please use channel instead

Sets the Signal of output #k

source

pub fn channels(self, signal: Signal) -> Self

Sets the same Signal for all outputs

source

pub fn channel(self, k: usize, output_signal: Signal) -> Self

Sets the Signal of output #k

Trait Implementations§

source§

impl Clone for Signals

source§

fn clone(&self) -> Signals

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Signals

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<(&[f64], usize)> for Signals

source§

fn from((data, n_step): (&[f64], usize)) -> Self

Converts to this type from the input type.
source§

impl From<(Vec<f64>, usize)> for Signals

source§

fn from((data, n_step): (Vec<f64>, usize)) -> Self

Converts to this type from the input type.
source§

impl TryFrom<Signals> for OneSignal

§

type Error = SignalsError

The type returned in the event of a conversion error.
source§

fn try_from(signals: Signals) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl Update for Signals

source§

fn update(&mut self)

source§

impl<U: UniqueIdentifier<DataType = Vec<f64>>> Write<U> for Signals

source§

fn write(&mut self) -> Option<Data<U>>

source§

impl TimerMarker for Signals

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Read<Tick> for T
where T: TimerMarker + Update,

source§

fn read(&mut self, _: Data<Tick>)

Read data from an input
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.