pub struct AppsConfig {
pub default: Option<AppsDefaultConfig>,
}Expand description
AppsConfig
JSON schema
{
"type": "object",
"properties": {
"_default": {
"default": null,
"anyOf": [
{
"$ref": "#/definitions/AppsDefaultConfig"
},
{
"type": "null"
}
]
}
}
}Fields§
§default: Option<AppsDefaultConfig>Trait Implementations§
Source§impl Clone for AppsConfig
impl Clone for AppsConfig
Source§fn clone(&self) -> AppsConfig
fn clone(&self) -> AppsConfig
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 AppsConfig
impl Debug for AppsConfig
Source§impl Default for AppsConfig
impl Default for AppsConfig
Source§impl<'de> Deserialize<'de> for AppsConfig
impl<'de> Deserialize<'de> for AppsConfig
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 AppsConfig
impl RefUnwindSafe for AppsConfig
impl Send for AppsConfig
impl Sync for AppsConfig
impl Unpin for AppsConfig
impl UnsafeUnpin for AppsConfig
impl UnwindSafe for AppsConfig
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