pub struct GitHubClientBuilder { /* private fields */ }Expand description
Builder for creating GitHubClient with various authentication methods
Implementations§
Source§impl GitHubClientBuilder
impl GitHubClientBuilder
Sourcepub fn personal_token(self, token: impl Into<String>) -> Self
pub fn personal_token(self, token: impl Into<String>) -> Self
Set personal access token for authentication
Sourcepub fn app(self, app_id: AppId, private_key: impl Into<String>) -> Self
pub fn app(self, app_id: AppId, private_key: impl Into<String>) -> Self
Set GitHub App authentication (app ID and private key)
Sourcepub fn build(self) -> GitHubResult<GitHubClient>
pub fn build(self) -> GitHubResult<GitHubClient>
Build the GitHubClient
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GitHubClientBuilder
impl RefUnwindSafe for GitHubClientBuilder
impl Send for GitHubClientBuilder
impl Sync for GitHubClientBuilder
impl Unpin for GitHubClientBuilder
impl UnwindSafe for GitHubClientBuilder
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more