pub struct ObjectHandle(/* private fields */);Implementations§
Source§impl ObjectHandle
impl ObjectHandle
Sourcepub fn drop_rust_object(self)
pub fn drop_rust_object(self)
Release this stored Rust object.
Trait Implementations§
Source§impl BatchableResult for ObjectHandle
impl BatchableResult for ObjectHandle
fn try_placeholder(_: &mut Runtime<'_>) -> Option<Self>
Source§impl BinaryDecode for ObjectHandle
impl BinaryDecode for ObjectHandle
fn decode(decoder: &mut DecodedData<'_>) -> Result<ObjectHandle, DecodeError>
Source§impl BinaryEncode for ObjectHandle
impl BinaryEncode for ObjectHandle
fn encode(self, encoder: &mut EncodedData)
Source§impl Clone for ObjectHandle
impl Clone for ObjectHandle
Source§fn clone(&self) -> ObjectHandle
fn clone(&self) -> ObjectHandle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ObjectHandle
Source§impl EncodeTypeDef for ObjectHandle
impl EncodeTypeDef for ObjectHandle
fn encode_type_def(encoder: &mut TypeDef)
Auto Trait Implementations§
impl Freeze for ObjectHandle
impl RefUnwindSafe for ObjectHandle
impl Send for ObjectHandle
impl Sync for ObjectHandle
impl Unpin for ObjectHandle
impl UnsafeUnpin for ObjectHandle
impl UnwindSafe for ObjectHandle
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