1 2 3 4 5 6 7 8 9
pub mod postgres; #[cfg(feature = "sqlite")] pub mod sqlite; pub mod mysql; pub use self::postgres::Postgres; #[cfg(feature = "sqlite")] pub use self::sqlite::Sqlite; pub use self::mysql::Mysql;
1 2 3 4 5 6 7 8 9
pub mod postgres; #[cfg(feature = "sqlite")] pub mod sqlite; pub mod mysql; pub use self::postgres::Postgres; #[cfg(feature = "sqlite")] pub use self::sqlite::Sqlite; pub use self::mysql::Mysql;
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
).
Search functions by type signature (e.g.
vec -> usize
)