pub struct GithubUserKeys {
pub username: String,
pub url: String,
pub keys: Vec<String>,
pub backend: GithubBackend,
pub authenticated: bool,
pub auth_mode: GithubAuthMode,
pub metadata: GithubFetchMetadata,
}Fields§
§username: String§url: String§keys: Vec<String>§backend: GithubBackend§authenticated: bool§auth_mode: GithubAuthMode§metadata: GithubFetchMetadataTrait Implementations§
Source§impl Clone for GithubUserKeys
impl Clone for GithubUserKeys
Source§fn clone(&self) -> GithubUserKeys
fn clone(&self) -> GithubUserKeys
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 GithubUserKeys
impl Debug for GithubUserKeys
Source§impl PartialEq for GithubUserKeys
impl PartialEq for GithubUserKeys
impl Eq for GithubUserKeys
impl StructuralPartialEq for GithubUserKeys
Auto Trait Implementations§
impl Freeze for GithubUserKeys
impl RefUnwindSafe for GithubUserKeys
impl Send for GithubUserKeys
impl Sync for GithubUserKeys
impl Unpin for GithubUserKeys
impl UnsafeUnpin for GithubUserKeys
impl UnwindSafe for GithubUserKeys
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.