We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
macros
1 parent f6b9ee1 commit 64470f7Copy full SHA for 64470f7
scylla-cql/src/lib.rs
@@ -1,7 +1,19 @@
1
pub mod errors;
2
pub mod frame;
3
#[macro_use]
4
-pub mod macros;
+pub mod macros {
5
+ pub use scylla_macros::FromRow;
6
+ pub use scylla_macros::FromUserType;
7
+ pub use scylla_macros::IntoUserType;
8
+ pub use scylla_macros::SerializeCql;
9
+ pub use scylla_macros::SerializeRow;
10
+ pub use scylla_macros::ValueList;
11
+
12
+ // Reexports for derive(IntoUserType)
13
+ pub use bytes::{BufMut, Bytes, BytesMut};
14
15
+ pub use crate::impl_from_cql_value_from_method;
16
+}
17
18
pub mod types;
19
scylla-cql/src/macros.rs
0 commit comments