#[repr(C)]pub struct DartCObjectNativePointer {
pub ptr: isize,
pub size: isize,
pub callback: DartHandleFinalizer,
}Fields§
§ptr: isize§size: isize§callback: DartHandleFinalizerTrait Implementations§
Source§impl Clone for DartCObjectNativePointer
impl Clone for DartCObjectNativePointer
Source§fn clone(&self) -> DartCObjectNativePointer
fn clone(&self) -> DartCObjectNativePointer
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 DartCObjectNativePointer
impl Debug for DartCObjectNativePointer
Source§impl From<DartCObjectNativePointer> for DartValue
impl From<DartCObjectNativePointer> for DartValue
Source§fn from(v: DartCObjectNativePointer) -> DartValue
fn from(v: DartCObjectNativePointer) -> DartValue
Converts to this type from the input type.
Source§impl IntoDart for DartCObjectNativePointer
impl IntoDart for DartCObjectNativePointer
Source§fn into_dart(self) -> DartCObject
fn into_dart(self) -> DartCObject
Consumes
Self and Performs the conversion.Source§impl PartialEq for DartCObjectNativePointer
impl PartialEq for DartCObjectNativePointer
impl Copy for DartCObjectNativePointer
impl Eq for DartCObjectNativePointer
impl StructuralPartialEq for DartCObjectNativePointer
Auto Trait Implementations§
impl Freeze for DartCObjectNativePointer
impl RefUnwindSafe for DartCObjectNativePointer
impl Send for DartCObjectNativePointer
impl Sync for DartCObjectNativePointer
impl Unpin for DartCObjectNativePointer
impl UnwindSafe for DartCObjectNativePointer
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