rustorm 0.0.3

A simple ORM and code generator for rust
#[derive(Debug)]
pub struct Writer{
    pub src:String,
}

impl Writer{
    
    #[inline]
    pub fn new()->Self{
        Writer{src:String::new()}
    }
    
    #[inline]
    pub fn append(&mut self, str:&str)->&mut Self{
        self.src.push_str(str);
        self
    }
    
    #[inline]
    pub fn appendln(&mut self, str:&str)->&mut Self{
        self.append(str);
        self.ln()
    }
    
    #[inline]
    pub fn tab(&mut self)->&mut Self{
        self.append("    ")
    }
    #[inline]
    pub fn tabs(&mut self, n:u32)->&mut Self{
        for i in 0..n{
            self.tab();
        }
        self
    }
    #[inline]
    pub fn ln(&mut self)->&mut Self{
        self.append("\n")
    }
    #[inline]
    pub fn comma(&mut self)->&mut Self{
        self.append(",")
    }
    
    #[inline]
    pub fn comment(&mut self, comment: &str)->&mut Self{
        self.append("//");
        self.append(comment)
    }
}