pub struct HostCallable { /* private fields */ }Expand description
A callable closure backed by native Rust code with captured state. Used by extension modules to return objects with callable methods (e.g., DbTable.filter).
Implementations§
Trait Implementations§
Source§impl Clone for HostCallable
impl Clone for HostCallable
Source§fn clone(&self) -> HostCallable
fn clone(&self) -> HostCallable
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 moreAuto Trait Implementations§
impl Freeze for HostCallable
impl !RefUnwindSafe for HostCallable
impl Send for HostCallable
impl Sync for HostCallable
impl Unpin for HostCallable
impl UnsafeUnpin for HostCallable
impl !UnwindSafe for HostCallable
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