#[repr(C)]pub struct k0_list {
pub n: J,
pub G0: [G; 1],
}Expand description
Underlying list value of q object.
§Note
Usually this struct does not need to be accessed this struct directly unless user wants to access via a raw pointer for non-trivial stuff.
Fields§
§n: JLength of the list.
G0: [G; 1]Pointer referring to the head of the list. This pointer will be interpreted
as various types when accessing K object to edit the list with
as_mut_slice.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for k0_list
impl RefUnwindSafe for k0_list
impl Send for k0_list
impl Sync for k0_list
impl Unpin for k0_list
impl UnwindSafe for k0_list
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