pub struct FlatJsonValue<V: Debug + Clone + AsRef<str> + GetBytes> {
pub pointer: PointerKey,
pub value: Option<V>,
}
Fields§
§pointer: PointerKey
§value: Option<V>
Trait Implementations§
Source§impl<V: Clone + Debug + Clone + AsRef<str> + GetBytes> Clone for FlatJsonValue<V>
impl<V: Clone + Debug + Clone + AsRef<str> + GetBytes> Clone for FlatJsonValue<V>
Source§fn clone(&self) -> FlatJsonValue<V>
fn clone(&self) -> FlatJsonValue<V>
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<V: Default + Debug + Clone + AsRef<str> + GetBytes> Default for FlatJsonValue<V>
impl<V: Default + Debug + Clone + AsRef<str> + GetBytes> Default for FlatJsonValue<V>
Source§fn default() -> FlatJsonValue<V>
fn default() -> FlatJsonValue<V>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<V> Freeze for FlatJsonValue<V>where
V: Freeze,
impl<V> RefUnwindSafe for FlatJsonValue<V>where
V: RefUnwindSafe,
impl<V> Send for FlatJsonValue<V>where
V: Send,
impl<V> Sync for FlatJsonValue<V>where
V: Sync,
impl<V> Unpin for FlatJsonValue<V>where
V: Unpin,
impl<V> UnwindSafe for FlatJsonValue<V>where
V: UnwindSafe,
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