pub struct ArrayValueContext {
pub wsc: (String, Option<String>),
}
Fields§
§wsc: (String, Option<String>)
the whitespace and/or comments that may occur after the value and (optionally) after the comma following the value. In other words, roughly:
value { wsc.0 } [ COMMA { wsc.1 } [ next_value ]]
Trait Implementations§
Source§impl Clone for ArrayValueContext
impl Clone for ArrayValueContext
Source§fn clone(&self) -> ArrayValueContext
fn clone(&self) -> ArrayValueContext
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 ArrayValueContext
impl Debug for ArrayValueContext
Source§impl PartialEq for ArrayValueContext
impl PartialEq for ArrayValueContext
impl StructuralPartialEq for ArrayValueContext
Auto Trait Implementations§
impl Freeze for ArrayValueContext
impl RefUnwindSafe for ArrayValueContext
impl Send for ArrayValueContext
impl Sync for ArrayValueContext
impl Unpin for ArrayValueContext
impl UnwindSafe for ArrayValueContext
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