pub struct ConfigProviderMetadataSystemEntry {
pub example: Option<String>,
pub help: Option<String>,
pub read_only: Option<bool>,
pub type_: Option<String>,
}Expand description
ConfigProviderMetadataSystemEntry
JSON schema
{
"type": "object",
"properties": {
"Example": {
"type": "string"
},
"Help": {
"type": "string"
},
"ReadOnly": {
"type": "boolean"
},
"Type": {
"type": "string"
}
},
"additionalProperties": true
}Fields§
§example: Option<String>§help: Option<String>§read_only: Option<bool>§type_: Option<String>Trait Implementations§
Source§impl Clone for ConfigProviderMetadataSystemEntry
impl Clone for ConfigProviderMetadataSystemEntry
Source§fn clone(&self) -> ConfigProviderMetadataSystemEntry
fn clone(&self) -> ConfigProviderMetadataSystemEntry
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<'de> Deserialize<'de> for ConfigProviderMetadataSystemEntry
impl<'de> Deserialize<'de> for ConfigProviderMetadataSystemEntry
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<&ConfigProviderMetadataSystemEntry> for ConfigProviderMetadataSystemEntry
impl From<&ConfigProviderMetadataSystemEntry> for ConfigProviderMetadataSystemEntry
Source§fn from(value: &ConfigProviderMetadataSystemEntry) -> Self
fn from(value: &ConfigProviderMetadataSystemEntry) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConfigProviderMetadataSystemEntry
impl RefUnwindSafe for ConfigProviderMetadataSystemEntry
impl Send for ConfigProviderMetadataSystemEntry
impl Sync for ConfigProviderMetadataSystemEntry
impl Unpin for ConfigProviderMetadataSystemEntry
impl UnwindSafe for ConfigProviderMetadataSystemEntry
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