pub enum ObjectValueTerminator {
None,
Newline,
Comma,
}
Expand description
Represents the character that terminates an object value.
Variants§
Trait Implementations§
Source§impl Clone for ObjectValueTerminator
impl Clone for ObjectValueTerminator
Source§fn clone(&self) -> ObjectValueTerminator
fn clone(&self) -> ObjectValueTerminator
Returns a copy 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 ObjectValueTerminator
impl Debug for ObjectValueTerminator
Source§impl Default for ObjectValueTerminator
impl Default for ObjectValueTerminator
Source§fn default() -> ObjectValueTerminator
fn default() -> ObjectValueTerminator
Returns the “default value” for a type. Read more
Source§impl PartialEq for ObjectValueTerminator
impl PartialEq for ObjectValueTerminator
impl Copy for ObjectValueTerminator
impl Eq for ObjectValueTerminator
impl StructuralPartialEq for ObjectValueTerminator
Auto Trait Implementations§
impl Freeze for ObjectValueTerminator
impl RefUnwindSafe for ObjectValueTerminator
impl Send for ObjectValueTerminator
impl Sync for ObjectValueTerminator
impl Unpin for ObjectValueTerminator
impl UnwindSafe for ObjectValueTerminator
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