Struct Snippet
rusty_x
pub struct Snippet { pub name: String, pub tags: Vec<String>, }
The snippet struct that has uses multiple tags, to order the snippets
name: String
tags: Vec<String>
impl Snippet
pub fn new(name: String, tags: &Vec<String>) -> Snippet
impl Debug for Snippet
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Send for Snippet
impl Sync for Snippet