pub enum DynamicReturnableValue {
Null,
Bool(bool),
JsonPointer(Arc<Box<RawValue>>),
JsonStatic(&'static RawValue),
}Variants§
Trait Implementations§
Source§impl Clone for DynamicReturnableValue
impl Clone for DynamicReturnableValue
Source§fn clone(&self) -> DynamicReturnableValue
fn clone(&self) -> DynamicReturnableValue
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 DynamicReturnableValue
impl Debug for DynamicReturnableValue
Source§impl PartialEq for DynamicReturnableValue
impl PartialEq for DynamicReturnableValue
Auto Trait Implementations§
impl Freeze for DynamicReturnableValue
impl RefUnwindSafe for DynamicReturnableValue
impl Send for DynamicReturnableValue
impl Sync for DynamicReturnableValue
impl Unpin for DynamicReturnableValue
impl UnwindSafe for DynamicReturnableValue
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