pub enum DartObject {
SendPort(DartCObjectSendPort),
Capability(DartCObjectCapability),
}Variants§
SendPort(DartCObjectSendPort)
Capability(DartCObjectCapability)
Trait Implementations§
Source§impl Clone for DartObject
impl Clone for DartObject
Source§fn clone(&self) -> DartObject
fn clone(&self) -> DartObject
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 DartObject
impl Debug for DartObject
Source§impl From<DartObject> for DartValue
impl From<DartObject> for DartValue
Source§fn from(object: DartObject) -> Self
fn from(object: DartObject) -> Self
Converts to this type from the input type.
Source§impl From<DartObject> for Value
impl From<DartObject> for Value
Source§fn from(v: DartObject) -> Value
fn from(v: DartObject) -> Value
Converts to this type from the input type.
Source§impl Hash for DartObject
impl Hash for DartObject
Source§impl PartialEq for DartObject
impl PartialEq for DartObject
Source§impl PartialOrd for DartObject
impl PartialOrd for DartObject
Source§impl TryFrom<Value> for DartObject
impl TryFrom<Value> for DartObject
impl Eq for DartObject
impl StructuralPartialEq for DartObject
Auto Trait Implementations§
impl Freeze for DartObject
impl RefUnwindSafe for DartObject
impl Send for DartObject
impl Sync for DartObject
impl Unpin for DartObject
impl UnwindSafe for DartObject
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