pub struct ConstSplitPointer<T> {
pub real: ConstRealPointer<T>,
pub imag: ConstRealPointer<T>,
}Expand description
Split pointer for separate real/imaginary parts
Fields§
§real: ConstRealPointer<T>§imag: ConstRealPointer<T>Implementations§
Source§impl<T> ConstSplitPointer<T>
impl<T> ConstSplitPointer<T>
pub fn new(real: ConstRealPointer<T>, imag: ConstRealPointer<T>) -> Self
Trait Implementations§
Source§impl<T: Clone> Clone for ConstSplitPointer<T>
impl<T: Clone> Clone for ConstSplitPointer<T>
Source§fn clone(&self) -> ConstSplitPointer<T>
fn clone(&self) -> ConstSplitPointer<T>
Returns a duplicate 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<T: Debug> Debug for ConstSplitPointer<T>
impl<T: Debug> Debug for ConstSplitPointer<T>
impl<T: Copy> Copy for ConstSplitPointer<T>
Auto Trait Implementations§
impl<T> Freeze for ConstSplitPointer<T>
impl<T> RefUnwindSafe for ConstSplitPointer<T>where
T: RefUnwindSafe,
impl<T> !Send for ConstSplitPointer<T>
impl<T> !Sync for ConstSplitPointer<T>
impl<T> Unpin for ConstSplitPointer<T>
impl<T> UnwindSafe for ConstSplitPointer<T>where
T: RefUnwindSafe,
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