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