#[repr(C)]pub struct TfLiteComplex128 {
pub re: f64,
pub im: f64,
}Expand description
Double-precision complex data type compatible with the C99 definition.
Fields§
§re: f64§im: f64Trait Implementations§
Source§impl Clone for TfLiteComplex128
impl Clone for TfLiteComplex128
Source§fn clone(&self) -> TfLiteComplex128
fn clone(&self) -> TfLiteComplex128
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 Debug for TfLiteComplex128
impl Debug for TfLiteComplex128
impl Copy for TfLiteComplex128
Auto Trait Implementations§
impl Freeze for TfLiteComplex128
impl RefUnwindSafe for TfLiteComplex128
impl Send for TfLiteComplex128
impl Sync for TfLiteComplex128
impl Unpin for TfLiteComplex128
impl UnsafeUnpin for TfLiteComplex128
impl UnwindSafe for TfLiteComplex128
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