pub struct RotatePersonalAccessToken { /* private fields */ }Expand description
Rotate a personal access token.
Implementations§
source§impl RotatePersonalAccessToken
 
impl RotatePersonalAccessToken
sourcepub fn builder() -> RotatePersonalAccessTokenBuilder
 
pub fn builder() -> RotatePersonalAccessTokenBuilder
Create a builder for the endpoint.
Trait Implementations§
source§impl Clone for RotatePersonalAccessToken
 
impl Clone for RotatePersonalAccessToken
source§fn clone(&self) -> RotatePersonalAccessToken
 
fn clone(&self) -> RotatePersonalAccessToken
Returns a copy 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 moresource§impl Debug for RotatePersonalAccessToken
 
impl Debug for RotatePersonalAccessToken
Auto Trait Implementations§
impl Freeze for RotatePersonalAccessToken
impl RefUnwindSafe for RotatePersonalAccessToken
impl Send for RotatePersonalAccessToken
impl Sync for RotatePersonalAccessToken
impl Unpin for RotatePersonalAccessToken
impl UnwindSafe for RotatePersonalAccessToken
Blanket Implementations§
source§impl<E, T, C> AsyncQuery<T, C> for E
 
impl<E, T, C> AsyncQuery<T, C> for E
source§fn query_async<'life0, 'life1, 'async_trait>(
    &'life0 self,
    client: &'life1 C,
) -> Pin<Box<dyn Future<Output = Result<T, ApiError<<C as RestClient>::Error>>> + Send + 'async_trait>>where
    'life0: 'async_trait,
    'life1: 'async_trait,
    E: 'async_trait,
 
fn query_async<'life0, 'life1, 'async_trait>(
    &'life0 self,
    client: &'life1 C,
) -> Pin<Box<dyn Future<Output = Result<T, ApiError<<C as RestClient>::Error>>> + Send + 'async_trait>>where
    'life0: 'async_trait,
    'life1: 'async_trait,
    E: 'async_trait,
Perform the query asynchronously against the client.
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
source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
 
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more