pub struct ConfigGetResponse {
pub provider: Option<String>,
pub type_: String,
}Expand description
ConfigGetResponse
JSON schema
{
"type": "object",
"required": [
"type"
],
"properties": {
"provider": {
"type": "string"
},
"type": {
"type": "string"
}
},
"additionalProperties": true
}Fields§
§provider: Option<String>§type_: StringTrait Implementations§
Source§impl Clone for ConfigGetResponse
impl Clone for ConfigGetResponse
Source§fn clone(&self) -> ConfigGetResponse
fn clone(&self) -> ConfigGetResponse
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 ConfigGetResponse
impl Debug for ConfigGetResponse
Source§impl<'de> Deserialize<'de> for ConfigGetResponse
impl<'de> Deserialize<'de> for ConfigGetResponse
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<&ConfigGetResponse> for ConfigGetResponse
impl From<&ConfigGetResponse> for ConfigGetResponse
Source§fn from(value: &ConfigGetResponse) -> Self
fn from(value: &ConfigGetResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConfigGetResponse
impl RefUnwindSafe for ConfigGetResponse
impl Send for ConfigGetResponse
impl Sync for ConfigGetResponse
impl Unpin for ConfigGetResponse
impl UnwindSafe for ConfigGetResponse
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