pub struct ParserSchema {
pub kind: String,
pub options: BTreeMap<String, String>,
}Fields§
§kind: String§options: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for ParserSchema
impl Clone for ParserSchema
Source§fn clone(&self) -> ParserSchema
fn clone(&self) -> ParserSchema
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 ParserSchema
impl Debug for ParserSchema
Source§impl<'de> Deserialize<'de> for ParserSchema
impl<'de> Deserialize<'de> for ParserSchema
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 ParserSchema
impl PartialEq for ParserSchema
Source§fn eq(&self, other: &ParserSchema) -> bool
fn eq(&self, other: &ParserSchema) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ParserSchema
impl StructuralPartialEq for ParserSchema
Auto Trait Implementations§
impl Freeze for ParserSchema
impl RefUnwindSafe for ParserSchema
impl Send for ParserSchema
impl Sync for ParserSchema
impl Unpin for ParserSchema
impl UnsafeUnpin for ParserSchema
impl UnwindSafe for ParserSchema
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