pub struct CompletionInfo {
pub values: Vec<String>,
pub total: Option<u32>,
pub has_more: Option<bool>,
}Fields§
§values: Vec<String>§total: Option<u32>§has_more: Option<bool>Implementations§
Source§impl CompletionInfo
impl CompletionInfo
Sourcepub const MAX_VALUES: usize = 100
pub const MAX_VALUES: usize = 100
Maximum number of completion values allowed per response according to MCP specification
Sourcepub fn new(values: Vec<String>) -> Result<Self, String>
pub fn new(values: Vec<String>) -> Result<Self, String>
Create a new CompletionInfo with validation for maximum values
Sourcepub fn with_all_values(values: Vec<String>) -> Result<Self, String>
pub fn with_all_values(values: Vec<String>) -> Result<Self, String>
Create CompletionInfo with all values and no pagination
Sourcepub fn with_pagination(
values: Vec<String>,
total: Option<u32>,
has_more: bool,
) -> Result<Self, String>
pub fn with_pagination( values: Vec<String>, total: Option<u32>, has_more: bool, ) -> Result<Self, String>
Create CompletionInfo with pagination information
Sourcepub fn has_more_results(&self) -> bool
pub fn has_more_results(&self) -> bool
Check if this completion response indicates more results are available
Sourcepub fn total_available(&self) -> Option<u32>
pub fn total_available(&self) -> Option<u32>
Get the total number of available completions, if known
Trait Implementations§
Source§impl Clone for CompletionInfo
impl Clone for CompletionInfo
Source§fn clone(&self) -> CompletionInfo
fn clone(&self) -> CompletionInfo
Returns a duplicate 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 CompletionInfo
impl Debug for CompletionInfo
Source§impl Default for CompletionInfo
impl Default for CompletionInfo
Source§fn default() -> CompletionInfo
fn default() -> CompletionInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CompletionInfo
impl<'de> Deserialize<'de> for CompletionInfo
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 JsonSchema for CompletionInfo
impl JsonSchema for CompletionInfo
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for CompletionInfo
impl PartialEq for CompletionInfo
Source§impl Serialize for CompletionInfo
impl Serialize for CompletionInfo
impl StructuralPartialEq for CompletionInfo
Auto Trait Implementations§
impl Freeze for CompletionInfo
impl RefUnwindSafe for CompletionInfo
impl Send for CompletionInfo
impl Sync for CompletionInfo
impl Unpin for CompletionInfo
impl UnsafeUnpin for CompletionInfo
impl UnwindSafe for CompletionInfo
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