Re-exports§
pub use traits::RuntimeSchema;pub use engine::structure::Engine;pub use engine::structure::ValidPermissions;pub use errors::MontycatClientError;pub use response::structure::MontycatResponse;pub use response::structure::MontycatStreamResponse;pub use keyspace::pubtrait::Keyspace;pub use keyspace::structures::inmemory::InMemoryKeyspace;pub use keyspace::structures::persistent::PersistentKeyspace;pub use tools::structure::Pointer;pub use tools::structure::Timestamp;pub use tools::structure::Limit;
Modules§
Derive Macros§
- Binary
Convert - This procedural macro derives a trait called
BinaryConvertfor the struct it’s applied to. TheBinaryConverttrait provides methods to convert a struct to and from its byte representation, useful for serializing and deserializing to and from binary formats. - Runtime
Schema - This procedural macro derives a trait called
RuntimeSchemafor the struct it’s applied to. TheRuntimeSchematrait provides methods to introspect the struct’s fields at runtime, specifically to identify fields of certain types (likePointerandTimestamp), retrieve all field names and types, and generate schema parameters.