pub struct Prompt {
pub name: String,
pub title: Option<String>,
pub description: Option<String>,
pub arguments: Option<Vec<PromptArgument>>,
pub meta: Option<HashMap<String, Value>>,
}
Expand description
A prompt descriptor (matches TypeScript Prompt interface exactly)
Fields§
§name: String
Programmatic identifier (from BaseMetadata)
title: Option<String>
Human-readable display name (from BaseMetadata)
description: Option<String>
Optional human-readable description
arguments: Option<Vec<PromptArgument>>
Arguments that the prompt accepts
meta: Option<HashMap<String, Value>>
Optional MCP meta information
Implementations§
Source§impl Prompt
impl Prompt
pub fn new(name: impl Into<String>) -> Prompt
pub fn with_title(self, title: impl Into<String>) -> Prompt
pub fn with_description(self, description: impl Into<String>) -> Prompt
pub fn with_arguments(self, arguments: Vec<PromptArgument>) -> Prompt
pub fn with_meta(self, meta: HashMap<String, Value>) -> Prompt
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Prompt
impl<'de> Deserialize<'de> for Prompt
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Prompt, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Prompt, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl HasPromptAnnotations for Prompt
impl HasPromptAnnotations for Prompt
fn annotations(&self) -> Option<&PromptAnnotations>
Source§impl HasPromptArguments for Prompt
impl HasPromptArguments for Prompt
Source§impl HasPromptDescription for Prompt
impl HasPromptDescription for Prompt
fn description(&self) -> Option<&str>
Source§impl HasPromptMetadata for Prompt
impl HasPromptMetadata for Prompt
Source§impl Serialize for Prompt
impl Serialize for Prompt
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for Prompt
impl RefUnwindSafe for Prompt
impl Send for Prompt
impl Sync for Prompt
impl Unpin for Prompt
impl UnwindSafe for Prompt
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