pub struct Complex128 {
pub r: OrderedFloat<f64>,
pub i: OrderedFloat<f64>,
}
Fields§
§r: OrderedFloat<f64>
§i: OrderedFloat<f64>
Trait Implementations§
Source§impl Clone for Complex128
impl Clone for Complex128
Source§fn clone(&self) -> Complex128
fn clone(&self) -> Complex128
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 Complex128
impl Debug for Complex128
impl Copy for Complex128
Auto Trait Implementations§
impl Freeze for Complex128
impl RefUnwindSafe for Complex128
impl Send for Complex128
impl Sync for Complex128
impl Unpin for Complex128
impl UnwindSafe for Complex128
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