pub struct FoldResult {
pub folded_key: String,
pub remainder: Option<JsonValue>,
pub leaf_value: JsonValue,
pub segment_count: usize,
}Fields§
§folded_key: String§remainder: Option<JsonValue>§leaf_value: JsonValue§segment_count: usizeTrait Implementations§
Source§impl Clone for FoldResult
impl Clone for FoldResult
Source§fn clone(&self) -> FoldResult
fn clone(&self) -> FoldResult
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 FoldResult
impl RefUnwindSafe for FoldResult
impl Send for FoldResult
impl Sync for FoldResult
impl Unpin for FoldResult
impl UnsafeUnpin for FoldResult
impl UnwindSafe for FoldResult
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