pub struct RootConfigState {
pub schema: ConfigSchema,
pub values: JsonObject,
}Expand description
Live agent-host configuration metadata.
The schema describes the available configuration properties and the values contain the current value for each resolved property.
Fields§
§schema: ConfigSchemaJSON Schema describing available configuration properties
values: JsonObjectCurrent configuration values
Trait Implementations§
Source§impl Clone for RootConfigState
impl Clone for RootConfigState
Source§fn clone(&self) -> RootConfigState
fn clone(&self) -> RootConfigState
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 RootConfigState
impl Debug for RootConfigState
Source§impl<'de> Deserialize<'de> for RootConfigState
impl<'de> Deserialize<'de> for RootConfigState
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 PartialEq for RootConfigState
impl PartialEq for RootConfigState
Source§fn eq(&self, other: &RootConfigState) -> bool
fn eq(&self, other: &RootConfigState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RootConfigState
impl Serialize for RootConfigState
impl StructuralPartialEq for RootConfigState
Auto Trait Implementations§
impl Freeze for RootConfigState
impl RefUnwindSafe for RootConfigState
impl Send for RootConfigState
impl Sync for RootConfigState
impl Unpin for RootConfigState
impl UnsafeUnpin for RootConfigState
impl UnwindSafe for RootConfigState
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