pub struct McpOauthLoginResult {
pub authorization_url: Option<String>,
}Expand description
OAuth authorization URL the caller should open, or empty when cached tokens already authenticated the server.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
URL the caller should open in a browser to complete OAuth. Omitted when cached tokens were still valid and no browser interaction was needed — the server is already reconnected in that case. When present, the runtime starts the callback listener before returning and continues the flow in the background; completion is signaled via session.mcp_server_status_changed.
Trait Implementations§
Source§impl Clone for McpOauthLoginResult
impl Clone for McpOauthLoginResult
Source§fn clone(&self) -> McpOauthLoginResult
fn clone(&self) -> McpOauthLoginResult
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 McpOauthLoginResult
impl Debug for McpOauthLoginResult
Source§impl Default for McpOauthLoginResult
impl Default for McpOauthLoginResult
Source§fn default() -> McpOauthLoginResult
fn default() -> McpOauthLoginResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for McpOauthLoginResult
impl<'de> Deserialize<'de> for McpOauthLoginResult
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 McpOauthLoginResult
impl RefUnwindSafe for McpOauthLoginResult
impl Send for McpOauthLoginResult
impl Sync for McpOauthLoginResult
impl Unpin for McpOauthLoginResult
impl UnsafeUnpin for McpOauthLoginResult
impl UnwindSafe for McpOauthLoginResult
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