pub struct SessionAuthLoginRequest {
pub host: String,
pub login: String,
pub persist: Option<bool>,
pub token: String,
}Expand description
Internal GitHub login parameters.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§host: StringGitHub host URL
login: StringGitHub login
persist: Option<bool>Whether to persist the token after login
token: StringGitHub authentication token
Trait Implementations§
Source§impl Clone for SessionAuthLoginRequest
impl Clone for SessionAuthLoginRequest
Source§fn clone(&self) -> SessionAuthLoginRequest
fn clone(&self) -> SessionAuthLoginRequest
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 SessionAuthLoginRequest
impl Debug for SessionAuthLoginRequest
Source§impl Default for SessionAuthLoginRequest
impl Default for SessionAuthLoginRequest
Source§fn default() -> SessionAuthLoginRequest
fn default() -> SessionAuthLoginRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionAuthLoginRequest
impl<'de> Deserialize<'de> for SessionAuthLoginRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SessionAuthLoginRequest
impl RefUnwindSafe for SessionAuthLoginRequest
impl Send for SessionAuthLoginRequest
impl Sync for SessionAuthLoginRequest
impl Unpin for SessionAuthLoginRequest
impl UnsafeUnpin for SessionAuthLoginRequest
impl UnwindSafe for SessionAuthLoginRequest
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