pub struct SessionConfigSchema {
pub type: String,
pub properties: HashMap<String, SessionConfigPropertySchema>,
pub required: Option<Vec<String>>,
}Expand description
A JSON Schema object describing available session configuration metadata.
Fields§
§type: StringJSON Schema: always 'object'
properties: HashMap<String, SessionConfigPropertySchema>JSON Schema: property descriptors keyed by property id
required: Option<Vec<String>>JSON Schema: list of required property ids
Trait Implementations§
Source§impl Clone for SessionConfigSchema
impl Clone for SessionConfigSchema
Source§fn clone(&self) -> SessionConfigSchema
fn clone(&self) -> SessionConfigSchema
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 SessionConfigSchema
impl Debug for SessionConfigSchema
Source§impl<'de> Deserialize<'de> for SessionConfigSchema
impl<'de> Deserialize<'de> for SessionConfigSchema
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 SessionConfigSchema
impl PartialEq for SessionConfigSchema
Source§fn eq(&self, other: &SessionConfigSchema) -> bool
fn eq(&self, other: &SessionConfigSchema) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SessionConfigSchema
impl Serialize for SessionConfigSchema
impl StructuralPartialEq for SessionConfigSchema
Auto Trait Implementations§
impl Freeze for SessionConfigSchema
impl RefUnwindSafe for SessionConfigSchema
impl Send for SessionConfigSchema
impl Sync for SessionConfigSchema
impl Unpin for SessionConfigSchema
impl UnsafeUnpin for SessionConfigSchema
impl UnwindSafe for SessionConfigSchema
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