pub enum JsonKeyValue {
String(JsonStringNode),
Interpolation(JsonInterpolationNode),
}Variants§
String(JsonStringNode)
Interpolation(JsonInterpolationNode)
Trait Implementations§
Source§impl Clone for JsonKeyValue
impl Clone for JsonKeyValue
Source§fn clone(&self) -> JsonKeyValue
fn clone(&self) -> JsonKeyValue
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 moreAuto Trait Implementations§
impl Freeze for JsonKeyValue
impl RefUnwindSafe for JsonKeyValue
impl Send for JsonKeyValue
impl Sync for JsonKeyValue
impl Unpin for JsonKeyValue
impl UnsafeUnpin for JsonKeyValue
impl UnwindSafe for JsonKeyValue
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