Attach

Trait Attach 

Source
pub trait Attach {
    // Required method
    fn attach(&mut self, element: Element) -> Result<(), TexError>;
}
Expand description

Used to attach elements to eachother

Required Methods§

Source

fn attach(&mut self, element: Element) -> Result<(), TexError>

Takes an elemennt and pushes to &self.1 Returns Result with either () or rank error

Implementors§