pub struct LoginOutput {
pub output: CommandOutput,
}Expand description
Output from a login command execution
Contains the raw output from the Docker login command and provides convenience methods for checking authentication status.
Fields§
§output: CommandOutputRaw output from the Docker command
Implementations§
Trait Implementations§
Source§impl Clone for LoginOutput
impl Clone for LoginOutput
Source§fn clone(&self) -> LoginOutput
fn clone(&self) -> LoginOutput
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 moreAuto Trait Implementations§
impl Freeze for LoginOutput
impl RefUnwindSafe for LoginOutput
impl Send for LoginOutput
impl Sync for LoginOutput
impl Unpin for LoginOutput
impl UnwindSafe for LoginOutput
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