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