pub struct GetGithubUserParams {
pub user_query: String,
pub activity_query: Option<String>,
pub activity_scope_query: Option<String>,
pub org_query: Option<String>,
pub disable_cache: Option<bool>,
pub _t: Option<String>,
}Fields§
§user_query: String§activity_query: Option<String>§activity_scope_query: Option<String>§org_query: Option<String>§disable_cache: Option<bool>§_t: Option<String>Implementations§
Source§impl GetGithubUserParams
impl GetGithubUserParams
pub fn new(user_query: impl Into<String>) -> Self
pub fn activity_query(self, value: impl Into<String>) -> Self
pub fn activity_scope_query(self, value: impl Into<String>) -> Self
pub fn org_query(self, value: impl Into<String>) -> Self
pub fn disable_cache(self, value: bool) -> Self
pub fn _t(self, value: impl Into<String>) -> Self
Trait Implementations§
Source§impl Clone for GetGithubUserParams
impl Clone for GetGithubUserParams
Source§fn clone(&self) -> GetGithubUserParams
fn clone(&self) -> GetGithubUserParams
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 moreAuto Trait Implementations§
impl Freeze for GetGithubUserParams
impl RefUnwindSafe for GetGithubUserParams
impl Send for GetGithubUserParams
impl Sync for GetGithubUserParams
impl Unpin for GetGithubUserParams
impl UnsafeUnpin for GetGithubUserParams
impl UnwindSafe for GetGithubUserParams
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