pub struct SseConnection {
pub url: String,
pub headers: HashMap<String, String>,
pub oauth: Option<McpOAuthConfig>,
}Expand description
SSE (Server-Sent Events) transport connection config.
Fields§
§url: String§headers: HashMap<String, String>§oauth: Option<McpOAuthConfig>Optional OAuth 2.1 configuration for automatic token management.
Trait Implementations§
Source§impl Clone for SseConnection
impl Clone for SseConnection
Source§fn clone(&self) -> SseConnection
fn clone(&self) -> SseConnection
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 SseConnection
impl Debug for SseConnection
Source§impl<'de> Deserialize<'de> for SseConnection
impl<'de> Deserialize<'de> for SseConnection
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 SseConnection
impl RefUnwindSafe for SseConnection
impl Send for SseConnection
impl Sync for SseConnection
impl Unpin for SseConnection
impl UnsafeUnpin for SseConnection
impl UnwindSafe for SseConnection
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