#[repr(C)]pub struct ConstLanePtr {
pub lane: *const Lane,
}
Expand description
Shared struct for Lane
pointers.
This is needed because *const Lane
can’t be used directly in the CxxVector collection.
Fields§
§lane: *const Lane
Trait Implementations§
Source§impl ExternType for ConstLanePtr
impl ExternType for ConstLanePtr
impl VectorElement for ConstLanePtr
Auto Trait Implementations§
impl Freeze for ConstLanePtr
impl RefUnwindSafe for ConstLanePtr
impl !Send for ConstLanePtr
impl !Sync for ConstLanePtr
impl Unpin for ConstLanePtr
impl UnwindSafe for ConstLanePtr
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