pub struct Params<T> {
pub marker: PhantomData<T>,
pub hook: Box<dyn ParamsHook>,
}
Expand description
The values of the parameters passed to a method call, as seen by the server.
Fields§
§marker: PhantomData<T>
§hook: Box<dyn ParamsHook>
Implementations§
Auto Trait Implementations§
impl<T> Freeze for Params<T>
impl<T> !RefUnwindSafe for Params<T>
impl<T> !Send for Params<T>
impl<T> !Sync for Params<T>
impl<T> Unpin for Params<T>where
T: Unpin,
impl<T> !UnwindSafe for Params<T>
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