pub struct ListSettingsResponse {
pub settings: Vec<ListSettingsResponseSettingsItem>,
}Expand description
ListSettingsResponse
JSON schema
{
"type": "object",
"required": [
"settings"
],
"properties": {
"settings": {
"type": "array",
"items": {
"type": "object",
"required": [
"encrypted",
"key",
"updatedAt",
"value"
],
"properties": {
"encrypted": {
"type": "boolean"
},
"key": {
"type": "string"
},
"updatedAt": {
"type": "number"
},
"value": {
"type": [
"string",
"null"
]
}
}
}
}
}
}Fields§
§settings: Vec<ListSettingsResponseSettingsItem>Implementations§
Source§impl ListSettingsResponse
impl ListSettingsResponse
pub fn builder() -> ListSettingsResponse
Trait Implementations§
Source§impl Clone for ListSettingsResponse
impl Clone for ListSettingsResponse
Source§fn clone(&self) -> ListSettingsResponse
fn clone(&self) -> ListSettingsResponse
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 ListSettingsResponse
impl Debug for ListSettingsResponse
Source§impl<'de> Deserialize<'de> for ListSettingsResponse
impl<'de> Deserialize<'de> for ListSettingsResponse
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<&ListSettingsResponse> for ListSettingsResponse
impl From<&ListSettingsResponse> for ListSettingsResponse
Source§fn from(value: &ListSettingsResponse) -> Self
fn from(value: &ListSettingsResponse) -> Self
Converts to this type from the input type.
Source§impl From<ListSettingsResponse> for ListSettingsResponse
impl From<ListSettingsResponse> for ListSettingsResponse
Source§fn from(value: ListSettingsResponse) -> Self
fn from(value: ListSettingsResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for ListSettingsResponse
impl Serialize for ListSettingsResponse
Source§impl TryFrom<ListSettingsResponse> for ListSettingsResponse
impl TryFrom<ListSettingsResponse> for ListSettingsResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: ListSettingsResponse) -> Result<Self, ConversionError>
fn try_from(value: ListSettingsResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ListSettingsResponse
impl RefUnwindSafe for ListSettingsResponse
impl Send for ListSettingsResponse
impl Sync for ListSettingsResponse
impl Unpin for ListSettingsResponse
impl UnsafeUnpin for ListSettingsResponse
impl UnwindSafe for ListSettingsResponse
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