#[non_exhaustive]pub struct ServiceAccountTokenSummaryWithKey {
pub id: String,
pub name: String,
pub key: String,
}
Expand description
A structure that contains the information about a service account token.
This structure is returned when creating the token. It is important to store the key
that is returned, as it is not retrievable at a later time.
If you lose the key, you can delete and recreate the token, which will create a new key.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: String
The unique ID of the service account token.
name: String
The name of the service account token.
key: String
The key for the service account token. Used when making calls to the Grafana HTTP APIs to authenticate and authorize the requests.
Implementations§
source§impl ServiceAccountTokenSummaryWithKey
impl ServiceAccountTokenSummaryWithKey
sourcepub fn builder() -> ServiceAccountTokenSummaryWithKeyBuilder
pub fn builder() -> ServiceAccountTokenSummaryWithKeyBuilder
Creates a new builder-style object to manufacture ServiceAccountTokenSummaryWithKey
.
Trait Implementations§
source§impl Clone for ServiceAccountTokenSummaryWithKey
impl Clone for ServiceAccountTokenSummaryWithKey
source§fn clone(&self) -> ServiceAccountTokenSummaryWithKey
fn clone(&self) -> ServiceAccountTokenSummaryWithKey
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 PartialEq for ServiceAccountTokenSummaryWithKey
impl PartialEq for ServiceAccountTokenSummaryWithKey
source§fn eq(&self, other: &ServiceAccountTokenSummaryWithKey) -> bool
fn eq(&self, other: &ServiceAccountTokenSummaryWithKey) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ServiceAccountTokenSummaryWithKey
Auto Trait Implementations§
impl Freeze for ServiceAccountTokenSummaryWithKey
impl RefUnwindSafe for ServiceAccountTokenSummaryWithKey
impl Send for ServiceAccountTokenSummaryWithKey
impl Sync for ServiceAccountTokenSummaryWithKey
impl Unpin for ServiceAccountTokenSummaryWithKey
impl UnwindSafe for ServiceAccountTokenSummaryWithKey
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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 moreCreates a shared type from an unshared type.