pub struct McpLogoutCommand { /* private fields */ }Expand description
Clear stored OAuth credentials for an MCP server.
Implementations§
Trait Implementations§
Source§impl ClaudeCommand for McpLogoutCommand
impl ClaudeCommand for McpLogoutCommand
Source§impl Clone for McpLogoutCommand
impl Clone for McpLogoutCommand
Source§fn clone(&self) -> McpLogoutCommand
fn clone(&self) -> McpLogoutCommand
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 moreAuto Trait Implementations§
impl Freeze for McpLogoutCommand
impl RefUnwindSafe for McpLogoutCommand
impl Send for McpLogoutCommand
impl Sync for McpLogoutCommand
impl Unpin for McpLogoutCommand
impl UnsafeUnpin for McpLogoutCommand
impl UnwindSafe for McpLogoutCommand
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> ClaudeCommandSyncExt for Twhere
T: ClaudeCommand<Output = CommandOutput>,
impl<T> ClaudeCommandSyncExt for Twhere
T: ClaudeCommand<Output = CommandOutput>,
Source§fn execute_sync(&self, claude: &Claude) -> Result<CommandOutput, Error>
fn execute_sync(&self, claude: &Claude) -> Result<CommandOutput, Error>
Blocking analog of
ClaudeCommand::execute for commands
producing CommandOutput.