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