PointerIndex

Trait PointerIndex 

Source
pub trait PointerIndex {
    type Output;

    // Required methods
    fn ptr(&self, index: &str) -> Option<Self::Output>;
    fn ptr_assign(&mut self, index: &str, value: Self::Output) -> Result<()>;
}

Required Associated Types§

Required Methods§

Source

fn ptr(&self, index: &str) -> Option<Self::Output>

Source

fn ptr_assign(&mut self, index: &str, value: Self::Output) -> Result<()>

Implementors§