pub struct GithubCliAuthConfig {
pub edge_base_url: String,
pub callback_bind: SocketAddr,
pub callback_path: String,
pub requested_scopes: Vec<String>,
}Fields§
§edge_base_url: String§callback_bind: SocketAddr§callback_path: String§requested_scopes: Vec<String>Trait Implementations§
Source§impl Clone for GithubCliAuthConfig
impl Clone for GithubCliAuthConfig
Source§fn clone(&self) -> GithubCliAuthConfig
fn clone(&self) -> GithubCliAuthConfig
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 GithubCliAuthConfig
impl Debug for GithubCliAuthConfig
Source§impl Default for GithubCliAuthConfig
impl Default for GithubCliAuthConfig
Source§impl<'de> Deserialize<'de> for GithubCliAuthConfig
impl<'de> Deserialize<'de> for GithubCliAuthConfig
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
Source§impl PartialEq for GithubCliAuthConfig
impl PartialEq for GithubCliAuthConfig
Source§fn eq(&self, other: &GithubCliAuthConfig) -> bool
fn eq(&self, other: &GithubCliAuthConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GithubCliAuthConfig
impl Serialize for GithubCliAuthConfig
impl Eq for GithubCliAuthConfig
impl StructuralPartialEq for GithubCliAuthConfig
Auto Trait Implementations§
impl Freeze for GithubCliAuthConfig
impl RefUnwindSafe for GithubCliAuthConfig
impl Send for GithubCliAuthConfig
impl Sync for GithubCliAuthConfig
impl Unpin for GithubCliAuthConfig
impl UnsafeUnpin for GithubCliAuthConfig
impl UnwindSafe for GithubCliAuthConfig
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