pub struct SSHCertificateAuthority {
pub id: String,
pub uri: String,
pub created_at: String,
pub description: String,
pub metadata: String,
pub public_key: String,
pub key_type: String,
}
Fields§
§id: String
unique identifier for this SSH Certificate Authority
uri: String
URI of the SSH Certificate Authority API resource
created_at: String
timestamp when the SSH Certificate Authority API resource was created, RFC 3339 format
description: String
human-readable description of this SSH Certificate Authority. optional, max 255 bytes.
metadata: String
arbitrary user-defined machine-readable data of this SSH Certificate Authority. optional, max 4096 bytes.
public_key: String
raw public key for this SSH Certificate Authority
key_type: String
the type of private key for this SSH Certificate Authority
Trait Implementations§
Source§impl Clone for SSHCertificateAuthority
impl Clone for SSHCertificateAuthority
Source§fn clone(&self) -> SSHCertificateAuthority
fn clone(&self) -> SSHCertificateAuthority
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 SSHCertificateAuthority
impl Debug for SSHCertificateAuthority
Source§impl Default for SSHCertificateAuthority
impl Default for SSHCertificateAuthority
Source§fn default() -> SSHCertificateAuthority
fn default() -> SSHCertificateAuthority
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SSHCertificateAuthority
impl<'de> Deserialize<'de> for SSHCertificateAuthority
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 SSHCertificateAuthority
impl RefUnwindSafe for SSHCertificateAuthority
impl Send for SSHCertificateAuthority
impl Sync for SSHCertificateAuthority
impl Unpin for SSHCertificateAuthority
impl UnwindSafe for SSHCertificateAuthority
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