pub struct LoginCredentials { /* private fields */ }Expand description
User credentials for Jira authentication.
This structure holds the login information required for establishing a session with the Jira API. Credentials are only held in memory during the authentication process and are never persisted to disk.
§Security Considerations
- Passwords are stored in plain text only during authentication
- Credentials are cleared from memory after session establishment
- No persistence to avoid credential theft from configuration files
Trait Implementations§
Source§impl Clone for LoginCredentials
impl Clone for LoginCredentials
Source§fn clone(&self) -> LoginCredentials
fn clone(&self) -> LoginCredentials
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 LoginCredentials
impl Debug for LoginCredentials
Auto Trait Implementations§
impl Freeze for LoginCredentials
impl RefUnwindSafe for LoginCredentials
impl Send for LoginCredentials
impl Sync for LoginCredentials
impl Unpin for LoginCredentials
impl UnsafeUnpin for LoginCredentials
impl UnwindSafe for LoginCredentials
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