pub struct OrgClient<'a> { /* private fields */ }Expand description
Client scoped to an organization (/{org}).
Implementations§
Source§impl OrgClient<'_>
impl OrgClient<'_>
Sourcepub async fn get(&self) -> Result<GetByOrg200Response, Error<GetByOrgError>>
pub async fn get(&self) -> Result<GetByOrg200Response, Error<GetByOrgError>>
Sourcepub fn repos(&self) -> ReposClient<'_>
pub fn repos(&self) -> ReposClient<'_>
Access repository listing and creation.
Sourcepub fn api_keys(&self) -> ApiKeysClient<'_>
pub fn api_keys(&self) -> ApiKeysClient<'_>
Access API key management.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for OrgClient<'a>
impl<'a> !RefUnwindSafe for OrgClient<'a>
impl<'a> Send for OrgClient<'a>
impl<'a> Sync for OrgClient<'a>
impl<'a> Unpin for OrgClient<'a>
impl<'a> UnsafeUnpin for OrgClient<'a>
impl<'a> !UnwindSafe for OrgClient<'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