#[repr(C)]pub struct FT_ListRec {
pub head: FT_ListNode,
pub tail: FT_ListNode,
}
Fields§
§head: FT_ListNode
§tail: FT_ListNode
Trait Implementations§
Source§impl Clone for FT_ListRec
impl Clone for FT_ListRec
Source§fn clone(&self) -> FT_ListRec
fn clone(&self) -> FT_ListRec
Returns a copy 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 FT_ListRec
impl Debug for FT_ListRec
Source§impl Hash for FT_ListRec
impl Hash for FT_ListRec
Source§impl PartialEq for FT_ListRec
impl PartialEq for FT_ListRec
impl Copy for FT_ListRec
impl Eq for FT_ListRec
impl StructuralPartialEq for FT_ListRec
Auto Trait Implementations§
impl Freeze for FT_ListRec
impl RefUnwindSafe for FT_ListRec
impl !Send for FT_ListRec
impl !Sync for FT_ListRec
impl Unpin for FT_ListRec
impl UnwindSafe for FT_ListRec
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