pub struct AddTrustKeyRequest {
pub tenant_id: String,
pub key_id: String,
pub public_key: String,
}Fields§
§tenant_id: String§key_id: String§public_key: StringHex-encoded Ed25519 public key
Implementations§
Trait Implementations§
Source§impl Clone for AddTrustKeyRequest
impl Clone for AddTrustKeyRequest
Source§fn clone(&self) -> AddTrustKeyRequest
fn clone(&self) -> AddTrustKeyRequest
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 AddTrustKeyRequest
impl Debug for AddTrustKeyRequest
Source§impl Default for AddTrustKeyRequest
impl Default for AddTrustKeyRequest
Source§fn default() -> AddTrustKeyRequest
fn default() -> AddTrustKeyRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddTrustKeyRequest
impl<'de> Deserialize<'de> for AddTrustKeyRequest
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 PartialEq for AddTrustKeyRequest
impl PartialEq for AddTrustKeyRequest
Source§fn eq(&self, other: &AddTrustKeyRequest) -> bool
fn eq(&self, other: &AddTrustKeyRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AddTrustKeyRequest
impl Serialize for AddTrustKeyRequest
impl StructuralPartialEq for AddTrustKeyRequest
Auto Trait Implementations§
impl Freeze for AddTrustKeyRequest
impl RefUnwindSafe for AddTrustKeyRequest
impl Send for AddTrustKeyRequest
impl Sync for AddTrustKeyRequest
impl Unpin for AddTrustKeyRequest
impl UnsafeUnpin for AddTrustKeyRequest
impl UnwindSafe for AddTrustKeyRequest
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