#[repr(C)]
pub union word {
pub w_float: t_float,
pub w_symbol: *mut t_symbol,
pub w_gpointer: *mut t_gpointer,
pub w_array: *mut _array,
pub w_binbuf: *mut _binbuf,
pub w_index: c_int,
/* private fields */
}Fields§
§w_float: t_float§w_symbol: *mut t_symbol§w_gpointer: *mut t_gpointer§w_array: *mut _array§w_binbuf: *mut _binbuf§w_index: c_intTrait Implementations§
Auto Trait Implementations§
impl Freeze for word
impl RefUnwindSafe for word
impl !Send for word
impl !Sync for word
impl Unpin for word
impl UnwindSafe for word
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