#[repr(C)]pub struct intList {
pub next: *mut intList,
pub value: i64,
}Fields§
§next: *mut intList§value: i64Trait Implementations§
Auto Trait Implementations§
impl Freeze for intList
impl RefUnwindSafe for intList
impl !Send for intList
impl !Sync for intList
impl Unpin for intList
impl UnwindSafe for intList
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