#[repr(C)]pub struct numberList {
pub next: *mut numberList,
pub value: f64,
}Fields§
§next: *mut numberList§value: f64Trait Implementations§
Source§impl Clone for numberList
impl Clone for numberList
Source§fn clone(&self) -> numberList
fn clone(&self) -> numberList
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for numberList
impl Debug for numberList
impl Copy for numberList
Auto Trait Implementations§
impl Freeze for numberList
impl RefUnwindSafe for numberList
impl !Send for numberList
impl !Sync for numberList
impl Unpin for numberList
impl UnwindSafe for numberList
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