pub struct Add;Trait Implementations§
Source§impl RpcMethodPrebuffered for Add
impl RpcMethodPrebuffered for Add
Source§type Input = Vec<f64>
type Input = Vec<f64>
The high-level input type expected by the request encoder (e.g.,
Vec<f64>).Source§fn encode_request(numbers: Self::Input) -> Result<Vec<u8>, Error>
fn encode_request(numbers: Self::Input) -> Result<Vec<u8>, Error>
Encodes the request into a byte array.
Source§fn decode_request(request_bytes: &[u8]) -> Result<Self::Input, Error>
fn decode_request(request_bytes: &[u8]) -> Result<Self::Input, Error>
Decodes raw request bytes into a typed request struct. Read more
Auto Trait Implementations§
impl Freeze for Add
impl RefUnwindSafe for Add
impl Send for Add
impl Sync for Add
impl Unpin for Add
impl UnwindSafe for Add
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