Struct nutlex::parser::ComplexSignal
source · pub struct ComplexSignal {
pub real: Vec<f64>,
pub imag: Vec<f64>,
}
Expand description
A complex data vector.
Fields§
§real: Vec<f64>
The real part.
imag: Vec<f64>
The imaginary part.
Trait Implementations§
source§impl Clone for ComplexSignal
impl Clone for ComplexSignal
source§fn clone(&self) -> ComplexSignal
fn clone(&self) -> ComplexSignal
Returns a copy 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 ComplexSignal
impl Debug for ComplexSignal
source§impl<'de> Deserialize<'de> for ComplexSignal
impl<'de> Deserialize<'de> for ComplexSignal
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
source§impl PartialEq for ComplexSignal
impl PartialEq for ComplexSignal
source§fn eq(&self, other: &ComplexSignal) -> bool
fn eq(&self, other: &ComplexSignal) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ComplexSignal
impl Serialize for ComplexSignal
impl StructuralPartialEq for ComplexSignal
Auto Trait Implementations§
impl RefUnwindSafe for ComplexSignal
impl Send for ComplexSignal
impl Sync for ComplexSignal
impl Unpin for ComplexSignal
impl UnwindSafe for ComplexSignal
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