#[repr(C)]pub union k0_inner {
pub byte: G,
pub short: H,
pub int: I,
pub long: J,
pub real: E,
pub float: F,
pub symbol: S,
pub table: *mut k0,
pub list: k0_list,
}Expand description
Underlying atom value of q object.
§Note
Usually this struct does not need to be accessed directly unless user wants to access via a raw pointer for non-trivial stuff.
Fields§
§byte: GByte type holder.
short: HShort type holder.
int: IInt type holder.
long: JLong type older.
real: EReal type holder.
float: FFloat type holder.
symbol: SSymbol type holder.
table: *mut k0Table type holder.
list: k0_listList type holder.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for k0_inner
impl RefUnwindSafe for k0_inner
impl !Sync for k0_inner
impl Unpin for k0_inner
impl UnwindSafe for k0_inner
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