pub struct SessionMcpOauthLoginResult {
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 SessionMcpOauthLoginResult
impl Clone for SessionMcpOauthLoginResult
Source§fn clone(&self) -> SessionMcpOauthLoginResult
fn clone(&self) -> SessionMcpOauthLoginResult
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 SessionMcpOauthLoginResult
impl Debug for SessionMcpOauthLoginResult
Source§impl Default for SessionMcpOauthLoginResult
impl Default for SessionMcpOauthLoginResult
Source§fn default() -> SessionMcpOauthLoginResult
fn default() -> SessionMcpOauthLoginResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionMcpOauthLoginResult
impl<'de> Deserialize<'de> for SessionMcpOauthLoginResult
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 SessionMcpOauthLoginResult
impl RefUnwindSafe for SessionMcpOauthLoginResult
impl Send for SessionMcpOauthLoginResult
impl Sync for SessionMcpOauthLoginResult
impl Unpin for SessionMcpOauthLoginResult
impl UnsafeUnpin for SessionMcpOauthLoginResult
impl UnwindSafe for SessionMcpOauthLoginResult
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