pub enum ProxyTransport {
Sse,
StreamableHttp,
}Expand description
Transport mode for upstream MCP server.
Variants§
Sse
SSE-based transport (legacy MCP): GET for SSE stream, POST for requests.
StreamableHttp
Streamable HTTP transport: POST with JSON response and mcp-session-id header.
Implementations§
Trait Implementations§
Source§impl Clone for ProxyTransport
impl Clone for ProxyTransport
Source§fn clone(&self) -> ProxyTransport
fn clone(&self) -> ProxyTransport
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 Debug for ProxyTransport
impl Debug for ProxyTransport
Source§impl PartialEq for ProxyTransport
impl PartialEq for ProxyTransport
Source§fn eq(&self, other: &ProxyTransport) -> bool
fn eq(&self, other: &ProxyTransport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ProxyTransport
impl Eq for ProxyTransport
impl StructuralPartialEq for ProxyTransport
Auto Trait Implementations§
impl Freeze for ProxyTransport
impl RefUnwindSafe for ProxyTransport
impl Send for ProxyTransport
impl Sync for ProxyTransport
impl Unpin for ProxyTransport
impl UnsafeUnpin for ProxyTransport
impl UnwindSafe for ProxyTransport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.