pub struct RpcParam {
pub name: String,
pub flags: ParamFlags,
pub type_info: TypeInfo,
pub value: Option<Bytes>,
}Expand description
An RPC parameter.
Fields§
§name: StringParameter name (can be empty for positional params).
flags: ParamFlagsStatus flags.
type_info: TypeInfoType information.
value: Option<Bytes>Parameter value (raw bytes).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for RpcParam
impl RefUnwindSafe for RpcParam
impl Send for RpcParam
impl Sync for RpcParam
impl Unpin for RpcParam
impl UnwindSafe for RpcParam
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