pub struct FunctionCallOperation<E: QueryEngine, T> { /* private fields */ }Expand description
Operation for executing a function call that returns a value.
Implementations§
Source§impl<E: QueryEngine, T> FunctionCallOperation<E, T>
impl<E: QueryEngine, T> FunctionCallOperation<E, T>
Sourcepub fn new(engine: E, call: ProcedureCall) -> Self
pub fn new(engine: E, call: ProcedureCall) -> Self
Create a new function call operation.
Auto Trait Implementations§
impl<E, T> Freeze for FunctionCallOperation<E, T>where
E: Freeze,
impl<E, T> RefUnwindSafe for FunctionCallOperation<E, T>where
E: RefUnwindSafe,
T: RefUnwindSafe,
impl<E, T> Send for FunctionCallOperation<E, T>where
T: Send,
impl<E, T> Sync for FunctionCallOperation<E, T>where
T: Sync,
impl<E, T> Unpin for FunctionCallOperation<E, T>
impl<E, T> UnwindSafe for FunctionCallOperation<E, T>where
E: UnwindSafe,
T: UnwindSafe,
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