pub struct ThreadIncrementElicitationResponse {
pub count: i64,
pub paused: bool,
}Expand description
Response for thread/increment_elicitation.
JSON schema
{
"title": "ThreadIncrementElicitationResponse",
"description": "Response for `thread/increment_elicitation`.",
"type": "object",
"required": [
"count",
"paused"
],
"properties": {
"count": {
"description": "Current out-of-band elicitation count after the increment.",
"type": "integer",
"format": "int64"
},
"paused": {
"description": "Whether timeout accounting is paused after applying the increment.",
"type": "boolean"
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}Fields§
§count: i64Current out-of-band elicitation count after the increment.
paused: boolWhether timeout accounting is paused after applying the increment.
Trait Implementations§
Source§impl Clone for ThreadIncrementElicitationResponse
impl Clone for ThreadIncrementElicitationResponse
Source§fn clone(&self) -> ThreadIncrementElicitationResponse
fn clone(&self) -> ThreadIncrementElicitationResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for ThreadIncrementElicitationResponse
impl<'de> Deserialize<'de> for ThreadIncrementElicitationResponse
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 ThreadIncrementElicitationResponse
impl RefUnwindSafe for ThreadIncrementElicitationResponse
impl Send for ThreadIncrementElicitationResponse
impl Sync for ThreadIncrementElicitationResponse
impl Unpin for ThreadIncrementElicitationResponse
impl UnsafeUnpin for ThreadIncrementElicitationResponse
impl UnwindSafe for ThreadIncrementElicitationResponse
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