pub enum DynamicFunction {
Method {
receiver: Arc<DynamicResource>,
params: Arc<Box<[Type]>>,
results: Arc<Box<[Type]>>,
},
Static {
params: Arc<Box<[Type]>>,
results: Arc<Box<[Type]>>,
},
}
Expand description
Dynamic function
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DynamicFunction
impl RefUnwindSafe for DynamicFunction
impl Send for DynamicFunction
impl Sync for DynamicFunction
impl Unpin for DynamicFunction
impl UnwindSafe for DynamicFunction
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