pub struct GitHubConfig {
pub api_token: String,
pub owner: Option<String>,
pub repo: Option<String>,
pub branch: String,
pub webhook_secret: Option<String>,
pub app_id: Option<String>,
pub app_private_key: Option<String>,
pub installation_id: Option<String>,
}Fields§
§api_token: String§owner: Option<String>§repo: Option<String>§branch: String§webhook_secret: Option<String>§app_id: Option<String>§app_private_key: Option<String>§installation_id: Option<String>Implementations§
Source§impl GitHubConfig
impl GitHubConfig
pub fn new(api_token: String) -> Self
pub fn from_env() -> Result<Self>
pub fn with_owner(self, owner: String) -> Self
pub fn with_repo(self, repo: String) -> Self
pub fn with_branch(self, branch: String) -> Self
pub fn with_webhook_secret(self, secret: String) -> Self
pub fn get_repository_ref( &self, owner: Option<&str>, repo: Option<&str>, ) -> Result<(String, String)>
pub fn has_app_auth(&self) -> bool
pub fn validate(&self) -> Result<()>
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<'de> Deserialize<'de> for GitHubConfig
impl<'de> Deserialize<'de> for GitHubConfig
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
Auto Trait Implementations§
impl Freeze for GitHubConfig
impl RefUnwindSafe for GitHubConfig
impl Send for GitHubConfig
impl Sync for GitHubConfig
impl Unpin for GitHubConfig
impl UnsafeUnpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FromResponse for Twhere
T: DeserializeOwned,
impl<T> FromResponse for Twhere
T: DeserializeOwned,
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