Trait soundchange::Search
[-] [+]
[src]
pub trait Search {
fn search_loop<F>(&mut self, s: &str, preconds: &[Cond], postconds: &[Cond], f: F) where F: FnMut(bool, &str);
}
pub trait Search {
fn search_loop<F>(&mut self, s: &str, preconds: &[Cond], postconds: &[Cond], f: F) where F: FnMut(bool, &str);
}
fn search_loop<F>(&mut self, s: &str, preconds: &[Cond], postconds: &[Cond], f: F) where F: FnMut(bool, &str)
Prefix searches with a type followed by a colon (e.g.
fn:
) to restrict the search to a given type.
Accepted types are: fn
, mod
,
struct
, enum
,
trait
, typedef
(or
tdef
).