pub struct AuthLogoutCommand;Expand description
Deauthenticate from Claude.
§Example
use claude_wrapper::{Claude, ClaudeCommand, AuthLogoutCommand};
let claude = Claude::builder().build()?;
AuthLogoutCommand::new().execute(&claude).await?;Implementations§
Trait Implementations§
Source§impl ClaudeCommand for AuthLogoutCommand
impl ClaudeCommand for AuthLogoutCommand
Source§impl Clone for AuthLogoutCommand
impl Clone for AuthLogoutCommand
Source§fn clone(&self) -> AuthLogoutCommand
fn clone(&self) -> AuthLogoutCommand
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 AuthLogoutCommand
impl Debug for AuthLogoutCommand
Source§impl Default for AuthLogoutCommand
impl Default for AuthLogoutCommand
Source§fn default() -> AuthLogoutCommand
fn default() -> AuthLogoutCommand
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AuthLogoutCommand
impl RefUnwindSafe for AuthLogoutCommand
impl Send for AuthLogoutCommand
impl Sync for AuthLogoutCommand
impl Unpin for AuthLogoutCommand
impl UnsafeUnpin for AuthLogoutCommand
impl UnwindSafe for AuthLogoutCommand
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