pub struct GetTlsKeyResponse {
    pub key: String,
    pub certificate_chain: Vec<String>,
}Expand description
Response containing TLS key and certificate chain
Fields§
§key: StringThe TLS key in hexadecimal format
certificate_chain: Vec<String>The chain of certificates
Trait Implementations§
Source§impl Debug for GetTlsKeyResponse
 
impl Debug for GetTlsKeyResponse
Source§impl<'de> Deserialize<'de> for GetTlsKeyResponse
 
impl<'de> Deserialize<'de> for GetTlsKeyResponse
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 GetTlsKeyResponse
impl RefUnwindSafe for GetTlsKeyResponse
impl Send for GetTlsKeyResponse
impl Sync for GetTlsKeyResponse
impl Unpin for GetTlsKeyResponse
impl UnwindSafe for GetTlsKeyResponse
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