pub trait SplitParent {
    type Parent: TypedParent;
    type Remnant;

    // Required methods
    fn from_parent_split(parent: Self::Parent, remnant: Self::Remnant) -> Self;
    fn into_parent_split(self) -> (Self::Parent, Self::Remnant);
}

Required Associated Types§

Required Methods§

source

fn from_parent_split(parent: Self::Parent, remnant: Self::Remnant) -> Self

source

fn into_parent_split(self) -> (Self::Parent, Self::Remnant)

Object Safety§

This trait is not object safe.

Implementors§