pub struct SaKeyResponse {
pub api_key_prefix: String,
pub description: Option<String>,
pub id: String,
}Expand description
SA API key in list view — key is masked.
JSON schema
{
"title": "SAKeyResponse",
"description": "SA API key in list view — key is masked.",
"type": "object",
"required": [
"api_key_prefix",
"description",
"id"
],
"properties": {
"api_key_prefix": {
"title": "Api Key Prefix",
"type": "string"
},
"description": {
"title": "Description",
"type": [
"string",
"null"
]
},
"id": {
"title": "Id",
"type": "string"
}
}
}Fields§
§api_key_prefix: String§description: Option<String>§id: StringTrait Implementations§
Source§impl Clone for SaKeyResponse
impl Clone for SaKeyResponse
Source§fn clone(&self) -> SaKeyResponse
fn clone(&self) -> SaKeyResponse
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 moreSource§impl Debug for SaKeyResponse
impl Debug for SaKeyResponse
Source§impl<'de> Deserialize<'de> for SaKeyResponse
impl<'de> Deserialize<'de> for SaKeyResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&SaKeyResponse> for SaKeyResponse
impl From<&SaKeyResponse> for SaKeyResponse
Source§fn from(value: &SaKeyResponse) -> Self
fn from(value: &SaKeyResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SaKeyResponse
impl RefUnwindSafe for SaKeyResponse
impl Send for SaKeyResponse
impl Sync for SaKeyResponse
impl Unpin for SaKeyResponse
impl UnsafeUnpin for SaKeyResponse
impl UnwindSafe for SaKeyResponse
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