pub enum EsiAppCredentials {
Web {
client_id: String,
client_secret: SecretString,
},
Native {
client_id: String,
},
}Expand description
Credentials for EVE SSO. Debug-safe: client_secret is redacted.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for EsiAppCredentials
impl Clone for EsiAppCredentials
Source§fn clone(&self) -> EsiAppCredentials
fn clone(&self) -> EsiAppCredentials
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 moreAuto Trait Implementations§
impl Freeze for EsiAppCredentials
impl RefUnwindSafe for EsiAppCredentials
impl Send for EsiAppCredentials
impl Sync for EsiAppCredentials
impl Unpin for EsiAppCredentials
impl UnsafeUnpin for EsiAppCredentials
impl UnwindSafe for EsiAppCredentials
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