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