pub trait Attach { // Required method fn attach(&mut self, element: Element) -> Result<(), TexError>; }
Used to attach elements to eachother
Takes an elemennt and pushes to &self.1 Returns Result with either () or rank error
()