pub struct ListRootsRequestParamsMeta {
pub progress_token: Option<ProgressToken>,
}
Expand description
ListRootsRequestParamsMeta
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<ProgressToken>
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 ListRootsRequestParamsMeta
impl Clone for ListRootsRequestParamsMeta
Source§fn clone(&self) -> ListRootsRequestParamsMeta
fn clone(&self) -> ListRootsRequestParamsMeta
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 ListRootsRequestParamsMeta
impl Debug for ListRootsRequestParamsMeta
Source§impl Default for ListRootsRequestParamsMeta
impl Default for ListRootsRequestParamsMeta
Source§fn default() -> ListRootsRequestParamsMeta
fn default() -> ListRootsRequestParamsMeta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListRootsRequestParamsMeta
impl<'de> Deserialize<'de> for ListRootsRequestParamsMeta
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
Auto Trait Implementations§
impl Freeze for ListRootsRequestParamsMeta
impl RefUnwindSafe for ListRootsRequestParamsMeta
impl Send for ListRootsRequestParamsMeta
impl Sync for ListRootsRequestParamsMeta
impl Unpin for ListRootsRequestParamsMeta
impl UnwindSafe for ListRootsRequestParamsMeta
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