Trait fuel_merkle::common::ParentNode
source · pub trait ParentNode: Nodewhere
Self: Sized,{
type Error;
// Required methods
fn left_child(&self) -> Result<Self, ChildError<Self::Key, Self::Error>>;
fn right_child(&self) -> Result<Self, ChildError<Self::Key, Self::Error>>;
}