#[repr(C)]pub struct complexi16_t {
pub re: i16,
pub im: i16,
}Expand description
Complex 16 bit integer type.
Fields§
§re: i16\brief Real part.
im: i16\brief Imaginary part.
Trait Implementations§
Source§impl Clone for complexi16_t
impl Clone for complexi16_t
Source§fn clone(&self) -> complexi16_t
fn clone(&self) -> complexi16_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 Debug for complexi16_t
impl Debug for complexi16_t
Source§impl Default for complexi16_t
impl Default for complexi16_t
Source§fn default() -> complexi16_t
fn default() -> complexi16_t
Returns the “default value” for a type. Read more
impl Copy for complexi16_t
Auto Trait Implementations§
impl Freeze for complexi16_t
impl RefUnwindSafe for complexi16_t
impl Send for complexi16_t
impl Sync for complexi16_t
impl Unpin for complexi16_t
impl UnwindSafe for complexi16_t
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