pub enum Transport {
Stdio,
Http,
Sse,
}Expand description
Transport type for MCP server connections.
§Example
use claude_wrapper::Transport;
use std::str::FromStr;
let t = Transport::from_str("stdio").unwrap();
assert_eq!(t, Transport::Stdio);
assert_eq!(t.to_string(), "stdio");
let t: Transport = "http".parse().unwrap();
assert_eq!(t, Transport::Http);Variants§
Stdio
Standard I/O transport — server runs as a subprocess.
Http
HTTP transport — server accessible via URL.
Sse
Server-Sent Events transport — server accessible via URL with SSE.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Transport
impl<'de> Deserialize<'de> for Transport
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
impl Copy for Transport
impl Eq for Transport
impl StructuralPartialEq for Transport
Auto Trait Implementations§
impl Freeze for Transport
impl RefUnwindSafe for Transport
impl Send for Transport
impl Sync for Transport
impl Unpin for Transport
impl UnsafeUnpin for Transport
impl UnwindSafe for Transport
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