pub struct LexiconOutput {
pub encoding: Option<String>,
pub schema: Option<LexiconObject>,
}Expand description
Output schema for queries/procedures.
Fields§
§encoding: Option<String>Encoding (usually “application/json”).
schema: Option<LexiconObject>The schema.
Trait Implementations§
Source§impl Clone for LexiconOutput
impl Clone for LexiconOutput
Source§fn clone(&self) -> LexiconOutput
fn clone(&self) -> LexiconOutput
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 Debug for LexiconOutput
impl Debug for LexiconOutput
Source§impl<'de> Deserialize<'de> for LexiconOutput
impl<'de> Deserialize<'de> for LexiconOutput
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 LexiconOutput
impl RefUnwindSafe for LexiconOutput
impl Send for LexiconOutput
impl Sync for LexiconOutput
impl Unpin for LexiconOutput
impl UnsafeUnpin for LexiconOutput
impl UnwindSafe for LexiconOutput
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