pub struct CreateKeyResponseBody {
pub key: CreateKeyResultBody,
}Expand description
keys/create/0.1 response — the realized record under key.
Nested rather than flattened because the canonical keys/* family carries
one record shape across create, show and import, so a consumer comparing
records between them cannot end up looking at two spellings of the same
thing. Mirrors acl/*’s { entry }.
Fields§
§key: CreateKeyResultBodyTrait Implementations§
Source§impl Clone for CreateKeyResponseBody
impl Clone for CreateKeyResponseBody
Source§fn clone(&self) -> CreateKeyResponseBody
fn clone(&self) -> CreateKeyResponseBody
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateKeyResponseBody
impl Debug for CreateKeyResponseBody
Source§impl<'de> Deserialize<'de> for CreateKeyResponseBody
impl<'de> Deserialize<'de> for CreateKeyResponseBody
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
Auto Trait Implementations§
impl Freeze for CreateKeyResponseBody
impl RefUnwindSafe for CreateKeyResponseBody
impl Send for CreateKeyResponseBody
impl Sync for CreateKeyResponseBody
impl Unpin for CreateKeyResponseBody
impl UnsafeUnpin for CreateKeyResponseBody
impl UnwindSafe for CreateKeyResponseBody
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