pub trait CloneInMemoryScope<'c, T> {
    // Required method
    fn clone_in(&self, scope: &mut MemoryScope<'c>) -> T;
}

Required Methods§

source

fn clone_in(&self, scope: &mut MemoryScope<'c>) -> T

Implementors§

source§

impl<'a, 'b, 'c> CloneInMemoryScope<'c, DecodedValue<'b>> for DecodedValue<'a>
where 'c: 'b,

source§

impl<'a, 'b, 'c> CloneInMemoryScope<'c, BTreeMap<(u8, &'b [u8]), DecodedValue<'b>>> for DecodedObject<'a>
where 'c: 'b,

source§

impl<'a, 'b, 'c> CloneInMemoryScope<'c, Vec<DecodedValue<'b>>> for DecodedArray<'a>
where 'c: 'b,