pub enum JsonLines {
Multiple,
Single,
}
Expand description
Whether JSON values can span multiple lines.
JSON schema
{
"description": "Whether JSON values can span multiple lines.",
"type": "string",
"enum": [
"multiple",
"single"
]
}
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for JsonLines
impl<'de> Deserialize<'de> for JsonLines
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 Ord for JsonLines
impl Ord for JsonLines
Source§impl PartialOrd for JsonLines
impl PartialOrd for JsonLines
Source§impl TryFrom<&String> for JsonLines
impl TryFrom<&String> for JsonLines
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for JsonLines
impl TryFrom<&str> for JsonLines
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for JsonLines
impl TryFrom<String> for JsonLines
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for JsonLines
impl Eq for JsonLines
impl StructuralPartialEq for JsonLines
Auto Trait Implementations§
impl Freeze for JsonLines
impl RefUnwindSafe for JsonLines
impl Send for JsonLines
impl Sync for JsonLines
impl Unpin for JsonLines
impl UnwindSafe for JsonLines
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.