#[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,
}Fields
w_float: t_floatw_symbol: *mut t_symbolw_gpointer: *mut t_gpointerw_array: *mut _arrayw_binbuf: *mut _binbufw_index: c_intTrait Implementations
Auto Trait Implementations
impl RefUnwindSafe for word
impl !Send for word
impl !Sync for word
impl Unpin for word
impl UnwindSafe for word
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more