pub struct GithubAuthHandler<'a> { /* private fields */ }Trait Implementations§
Source§impl<'a> Debug for GithubAuthHandler<'a>
impl<'a> Debug for GithubAuthHandler<'a>
Source§impl GithubAuthOperations for GithubAuthHandler<'_>
impl GithubAuthOperations for GithubAuthHandler<'_>
async fn login(&self, token: &SecretString) -> Result<AuthInfo, VaultError>
async fn configure( &self, config: &GithubConfigRequest, ) -> Result<(), VaultError>
async fn read_config(&self) -> Result<GithubConfig, VaultError>
async fn map_team( &self, team: &str, params: &GithubTeamMapping, ) -> Result<(), VaultError>
async fn read_team_mapping( &self, team: &str, ) -> Result<GithubTeamInfo, VaultError>
async fn list_teams(&self) -> Result<Vec<String>, VaultError>
Auto Trait Implementations§
impl<'a> Freeze for GithubAuthHandler<'a>
impl<'a> !RefUnwindSafe for GithubAuthHandler<'a>
impl<'a> Send for GithubAuthHandler<'a>
impl<'a> Sync for GithubAuthHandler<'a>
impl<'a> Unpin for GithubAuthHandler<'a>
impl<'a> UnsafeUnpin for GithubAuthHandler<'a>
impl<'a> !UnwindSafe for GithubAuthHandler<'a>
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