pub enum SignalBuffer {
Complex(ComplexFTensor),
Real(F64Tensor),
}Expand description
Owned transform result in canonical tensor storage.
Variants§
Complex(ComplexFTensor)
Complex coefficient or sample tensor.
Real(F64Tensor)
Real coefficient or sample tensor.
Implementations§
Trait Implementations§
Source§impl Clone for SignalBuffer
impl Clone for SignalBuffer
Source§fn clone(&self) -> SignalBuffer
fn clone(&self) -> SignalBuffer
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 SignalBuffer
impl Debug for SignalBuffer
Source§impl PartialEq for SignalBuffer
impl PartialEq for SignalBuffer
impl StructuralPartialEq for SignalBuffer
Auto Trait Implementations§
impl !RefUnwindSafe for SignalBuffer
impl !UnwindSafe for SignalBuffer
impl Freeze for SignalBuffer
impl Send for SignalBuffer
impl Sync for SignalBuffer
impl Unpin for SignalBuffer
impl UnsafeUnpin for SignalBuffer
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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