pub struct DedicatedInferencesGetCaResponse {
pub cert: String,
}Expand description
DedicatedInferencesGetCaResponse
JSON schema
{
"type": "object",
"required": [
"cert"
],
"properties": {
"cert": {
"description": "Base64-encoded CA certificate.",
"type": "string"
}
}
}Fields§
§cert: StringBase64-encoded CA certificate.
Trait Implementations§
Source§impl Clone for DedicatedInferencesGetCaResponse
impl Clone for DedicatedInferencesGetCaResponse
Source§fn clone(&self) -> DedicatedInferencesGetCaResponse
fn clone(&self) -> DedicatedInferencesGetCaResponse
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<'de> Deserialize<'de> for DedicatedInferencesGetCaResponse
impl<'de> Deserialize<'de> for DedicatedInferencesGetCaResponse
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<&DedicatedInferencesGetCaResponse> for DedicatedInferencesGetCaResponse
impl From<&DedicatedInferencesGetCaResponse> for DedicatedInferencesGetCaResponse
Source§fn from(value: &DedicatedInferencesGetCaResponse) -> Self
fn from(value: &DedicatedInferencesGetCaResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DedicatedInferencesGetCaResponse
impl RefUnwindSafe for DedicatedInferencesGetCaResponse
impl Send for DedicatedInferencesGetCaResponse
impl Sync for DedicatedInferencesGetCaResponse
impl Unpin for DedicatedInferencesGetCaResponse
impl UnsafeUnpin for DedicatedInferencesGetCaResponse
impl UnwindSafe for DedicatedInferencesGetCaResponse
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