Struct pancake_db_core::RepLevelsAndAtoms
source · [−]Fields
levels: Vec<u8>
atoms: Vec<A>
Implementations
sourceimpl<A: Atom> RepLevelsAndAtoms<A>
impl<A: Atom> RepLevelsAndAtoms<A>
pub fn extend(&mut self, other: &RepLevelsAndAtoms<A>)
Trait Implementations
sourceimpl<A: Clone + Atom> Clone for RepLevelsAndAtoms<A>
impl<A: Clone + Atom> Clone for RepLevelsAndAtoms<A>
sourcefn clone(&self) -> RepLevelsAndAtoms<A>
fn clone(&self) -> RepLevelsAndAtoms<A>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<A: Debug + Atom> Debug for RepLevelsAndAtoms<A>
impl<A: Debug + Atom> Debug for RepLevelsAndAtoms<A>
sourceimpl<P: Primitive> Decodable<P> for RepLevelsAndAtoms<P::A>
impl<P: Primitive> Decodable<P> for RepLevelsAndAtoms<P::A>
fn handle_atoms(
atoms: Vec<P::A>,
depth: u8,
_: usize
) -> CoreResult<RepLevelsAndAtoms<P::A>>
fn handle_null(_: usize) -> RepLevelsAndAtoms<P::A>
fn combine(
outputs: Vec<RepLevelsAndAtoms<P::A>>,
depth: u8,
_: usize
) -> RepLevelsAndAtoms<P::A>
sourceimpl<A: Default + Atom> Default for RepLevelsAndAtoms<A>
impl<A: Default + Atom> Default for RepLevelsAndAtoms<A>
sourcefn default() -> RepLevelsAndAtoms<A>
fn default() -> RepLevelsAndAtoms<A>
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl<A> RefUnwindSafe for RepLevelsAndAtoms<A> where
A: RefUnwindSafe,
impl<A> Send for RepLevelsAndAtoms<A>
impl<A> Sync for RepLevelsAndAtoms<A>
impl<A> Unpin for RepLevelsAndAtoms<A> where
A: Unpin,
impl<A> UnwindSafe for RepLevelsAndAtoms<A> where
A: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more