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