pub struct JsonrpcRequestParamsMeta {
pub progress_token: Option<RequestId>,
}
Expand description
JsonrpcRequestParamsMeta
JSON schema
{
"type": "object",
"properties": {
"progressToken": {
"description": "If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.",
"$ref": "#/definitions/ProgressToken"
}
}
}
Fields§
§progress_token: Option<RequestId>
If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
Trait Implementations§
Source§impl Clone for JsonrpcRequestParamsMeta
impl Clone for JsonrpcRequestParamsMeta
Source§fn clone(&self) -> JsonrpcRequestParamsMeta
fn clone(&self) -> JsonrpcRequestParamsMeta
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for JsonrpcRequestParamsMeta
impl Debug for JsonrpcRequestParamsMeta
Source§impl Default for JsonrpcRequestParamsMeta
impl Default for JsonrpcRequestParamsMeta
Source§impl<'de> Deserialize<'de> for JsonrpcRequestParamsMeta
impl<'de> Deserialize<'de> for JsonrpcRequestParamsMeta
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&JsonrpcRequestParamsMeta> for JsonrpcRequestParamsMeta
impl From<&JsonrpcRequestParamsMeta> for JsonrpcRequestParamsMeta
Source§fn from(value: &JsonrpcRequestParamsMeta) -> Self
fn from(value: &JsonrpcRequestParamsMeta) -> Self
Converts to this type from the input type.
Source§impl PartialEq for JsonrpcRequestParamsMeta
impl PartialEq for JsonrpcRequestParamsMeta
Source§impl Serialize for JsonrpcRequestParamsMeta
impl Serialize for JsonrpcRequestParamsMeta
impl StructuralPartialEq for JsonrpcRequestParamsMeta
Auto Trait Implementations§
impl Freeze for JsonrpcRequestParamsMeta
impl RefUnwindSafe for JsonrpcRequestParamsMeta
impl Send for JsonrpcRequestParamsMeta
impl Sync for JsonrpcRequestParamsMeta
impl Unpin for JsonrpcRequestParamsMeta
impl UnwindSafe for JsonrpcRequestParamsMeta
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