pub struct IdentitiesClient { /* private fields */ }Implementations§
Source§impl IdentitiesClient
impl IdentitiesClient
pub async fn create_identity( &self, req_identity: ReqIdentity, ) -> Result<RespResourceUrl, Error<CreateIdentityError>>
pub async fn delete_identity( &self, identity_uuid: &str, ) -> Result<RespString, Error<DeleteIdentityError>>
pub async fn get_identity( &self, identity_uuid: &str, ) -> Result<RespIdentity, Error<GetIdentityError>>
pub async fn list_identities( &self, ) -> Result<RespIdentityList, Error<ListIdentitiesError>>
Trait Implementations§
Source§impl Clone for IdentitiesClient
impl Clone for IdentitiesClient
Source§fn clone(&self) -> IdentitiesClient
fn clone(&self) -> IdentitiesClient
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 moreAuto Trait Implementations§
impl Freeze for IdentitiesClient
impl !RefUnwindSafe for IdentitiesClient
impl Send for IdentitiesClient
impl Sync for IdentitiesClient
impl Unpin for IdentitiesClient
impl !UnwindSafe for IdentitiesClient
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