pub enum JsonLines {
Multiple,
Single,
}Expand description
Whether JSON values can span multiple lines.
Variants§
Multiple
JSON values may span multiple lines.
This supports general-purpose JSON input.
Single
A given JSON value never contains a new-line.
Suitable for parsing NDJSON. Lines are allowed to contain multiple JSON values. The parser ignores empty lines.
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
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 UnsafeUnpin 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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.