pub struct IdentityService<'a> { /* private fields */ }Expand description
The Identity operations.
Implementations§
Source§impl<'a> IdentityService<'a>
impl<'a> IdentityService<'a>
Sourcepub async fn get_my_identity(&self) -> Result<Identity, Error>
pub async fn get_my_identity(&self) -> Result<Identity, Error>
GetMyIdentity — GET /my/identity.json.
Sent up to 3 times, backing off from 1000 ms, when the answer is 429, 500 or 503.
Sourcepub async fn update_my_timezone(
&self,
body: &UpdateMyTimezoneRequestContent,
) -> Result<(), Error>
pub async fn update_my_timezone( &self, body: &UpdateMyTimezoneRequestContent, ) -> Result<(), Error>
UpdateMyTimezone — PATCH /{accountId}/my/timezone.json.
Sent up to 3 times, backing off from 1000 ms, when the answer is 429, 500 or 503.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for IdentityService<'a>
impl<'a> !UnwindSafe for IdentityService<'a>
impl<'a> Freeze for IdentityService<'a>
impl<'a> Send for IdentityService<'a>
impl<'a> Sync for IdentityService<'a>
impl<'a> Unpin for IdentityService<'a>
impl<'a> UnsafeUnpin for IdentityService<'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