pub struct AtlassianCredentials {
pub instance_url: String,
pub email: String,
pub api_token: String,
}Expand description
Atlassian Cloud credentials.
Fields§
§instance_url: StringInstance base URL (e.g., “https://myorg.atlassian.net”).
email: StringUser email address.
api_token: StringAPI token.
Trait Implementations§
Source§impl Clone for AtlassianCredentials
impl Clone for AtlassianCredentials
Source§fn clone(&self) -> AtlassianCredentials
fn clone(&self) -> AtlassianCredentials
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 AtlassianCredentials
impl RefUnwindSafe for AtlassianCredentials
impl Send for AtlassianCredentials
impl Sync for AtlassianCredentials
impl Unpin for AtlassianCredentials
impl UnsafeUnpin for AtlassianCredentials
impl UnwindSafe for AtlassianCredentials
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