pub struct GithubConfig {
pub client_id: String,
pub client_secret: String,
pub redirect_uri: String,
pub required_org: Option<String>,
}Fields§
§client_id: String§client_secret: String§redirect_uri: String§required_org: Option<String>Trait Implementations§
Source§impl Clone for GithubConfig
impl Clone for GithubConfig
Source§fn clone(&self) -> GithubConfig
fn clone(&self) -> GithubConfig
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 moreSource§impl Debug for GithubConfig
impl Debug for GithubConfig
Source§impl Default for GithubConfig
impl Default for GithubConfig
Source§fn default() -> GithubConfig
fn default() -> GithubConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GithubConfig
impl RefUnwindSafe for GithubConfig
impl Send for GithubConfig
impl Sync for GithubConfig
impl Unpin for GithubConfig
impl UnwindSafe for GithubConfig
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