File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,16 @@ pub mod cass_log_types {
8686 include ! ( concat!( env!( "OUT_DIR" ) , "/cppdriver_log.rs" ) ) ;
8787}
8888
89+ /// CassColumnType
90+ pub mod cass_column_types {
91+ include ! ( concat!( env!( "OUT_DIR" ) , "/cppdriver_column_type.rs" ) ) ;
92+ }
93+
94+ /// CassUuid
95+ pub mod cass_uuid_types {
96+ include ! ( concat!( env!( "OUT_DIR" ) , "/cppdriver_data_uuid.rs" ) ) ;
97+ }
98+
8999lazy_static ! {
90100 pub static ref RUNTIME : Runtime = Runtime :: new( ) . unwrap( ) ;
91101 pub static ref LOGGER : RwLock <Logger > = RwLock :: new( Logger {
Original file line number Diff line number Diff line change 11use crate :: argconv:: * ;
2+ use crate :: cass_column_types:: CassColumnType ;
23use crate :: cass_types:: get_column_type_from_cql_type;
34use crate :: cass_types:: CassDataType ;
45use crate :: types:: * ;
@@ -8,8 +9,6 @@ use std::os::raw::c_char;
89use std:: sync:: Arc ;
910use std:: sync:: Weak ;
1011
11- include ! ( concat!( env!( "OUT_DIR" ) , "/cppdriver_column_type.rs" ) ) ;
12-
1312pub struct CassSchemaMeta {
1413 pub keyspaces : HashMap < String , CassKeyspaceMeta > ,
1514}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ use std::sync::atomic::{AtomicU64, Ordering};
1111use std:: time:: { SystemTime , UNIX_EPOCH } ;
1212use uuid:: Uuid ;
1313
14- include ! ( concat! ( env! ( "OUT_DIR" ) , "/cppdriver_data_uuid.rs" ) ) ;
14+ pub ( crate ) use crate :: cass_uuid_types :: CassUuid ;
1515
1616pub struct CassUuidGen {
1717 pub clock_seq_and_node : cass_uint64_t ,
You can’t perform that action at this time.
0 commit comments