1 2 3 4 5 6 7 8
#![allow(raw_pointer_derive, non_snake_case, non_camel_case_types, missing_copy_implementations)] extern crate libc; pub use tcl::*; pub use shims::*; pub mod tcl; pub mod shims;
1 2 3 4 5 6 7 8
#![allow(raw_pointer_derive, non_snake_case, non_camel_case_types, missing_copy_implementations)] extern crate libc; pub use tcl::*; pub use shims::*; pub mod tcl; pub mod shims;
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
).