#[repr(C, packed(4))]pub struct LinkData {
pub next: Pointer<LinkData>,
pub prev: Pointer<LinkData>,
pub data: Pointer<Void>,
}Fields§
§next: Pointer<LinkData>§prev: Pointer<LinkData>§data: Pointer<Void>Trait Implementations§
Source§impl GeneratedBlendStruct for LinkData
impl GeneratedBlendStruct for LinkData
const BLEND_VERSION: Version
const BLEND_POINTER_SIZE: usize = 8usize
const BLEND_ENDIANNESS: Endianness = Endianness::Little
const STRUCT_NAME: &'static str = "LinkData"
const STRUCT_INDEX: usize = 1usize
const STRUCT_TYPE_INDEX: usize = 14usize
const IS_SYNTHETIC: bool = false
impl PointerTarget<LinkData> for LinkData
Auto Trait Implementations§
impl Freeze for LinkData
impl RefUnwindSafe for LinkData
impl Send for LinkData
impl Sync for LinkData
impl Unpin for LinkData
impl UnwindSafe for LinkData
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