pub struct Admin<'c, C: Config> { /* private fields */ }Expand description
Admin group for all administration APIs. This groups together admin API keys, invites, users, projects, audit logs, and certificates.
Implementations§
Source§impl<'c, C: Config> Admin<'c, C>
impl<'c, C: Config> Admin<'c, C>
Sourcepub fn api_keys(&self) -> AdminAPIKeys<'_, C>
pub fn api_keys(&self) -> AdminAPIKeys<'_, C>
To call AdminAPIKeys group related APIs using this client.
Sourcepub fn projects(&self) -> Projects<'_, C>
pub fn projects(&self) -> Projects<'_, C>
To call Projects group related APIs using this client.
Sourcepub fn audit_logs(&self) -> AuditLogs<'_, C>
pub fn audit_logs(&self) -> AuditLogs<'_, C>
To call AuditLogs group related APIs using this client.
Sourcepub fn certificates(&self) -> Certificates<'_, C>
pub fn certificates(&self) -> Certificates<'_, C>
To call Certificates group related APIs using this client.
Auto Trait Implementations§
impl<'c, C> Freeze for Admin<'c, C>
impl<'c, C> !RefUnwindSafe for Admin<'c, C>
impl<'c, C> Send for Admin<'c, C>
impl<'c, C> Sync for Admin<'c, C>
impl<'c, C> Unpin for Admin<'c, C>
impl<'c, C> !UnwindSafe for Admin<'c, C>
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