Trait reproto_backend::naming::SourceOperator
[−]
[src]
pub trait SourceOperator { fn first(&self, c: char) -> Box<Iterator<Item = char>>; fn join(&self, input: Vec<String>) -> String; fn new_section(&self, c: char) -> Box<Iterator<Item = char>> { ... } fn rest(&self, c: char) -> Box<Iterator<Item = char>> { ... } }
Required Methods
Provided Methods
fn new_section(&self, c: char) -> Box<Iterator<Item = char>>
fn rest(&self, c: char) -> Box<Iterator<Item = char>>
Implementors
impl<S> SourceOperator for LowerCamelNaming<S> where
S: Source,impl<S> SourceOperator for UpperCamelNaming<S> where
S: Source,impl<S> SourceOperator for LowerSnakeNaming<S> where
S: Source,impl<S> SourceOperator for UpperSnakeNaming<S> where
S: Source,