Skip to main content

Crate reifydb_client

Crate reifydb_client 

Source

Re-exports§

pub use reifydb_type as type;

Structs§

AdminResult
Result type for admin operations
CommandResult
Result type for command operations
Frame
FrameColumn
FrameRow
A reference to a single row in a Frame.
FrameRows
Iterator over rows in a Frame.
LoginResult
Result type for authentication login operations
OrderedF32
A wrapper around f32 that provides total ordering by rejecting NaN values. This type is sortable and can be used in collections that require Ord, such as BTreeMap and BTreeSet. It prevents NaN values from being stored, ensuring that all values are comparable and can be sorted consistently.
OrderedF64
A wrapper around f64 that provides total ordering by rejecting NaN values. This type is sortable and can be used in collections that require Ord, such as BTreeMap and BTreeSet. It prevents NaN values from being stored, ensuring that all values are comparable and can be sorted consistently.
QueryResult
Result type for query operations

Enums§

FrameColumnData
FrameError
Error type for Frame extraction operations
FromFrameError
Error type for Frame deserialization via FromFrame derive.
FromValueError
Error type for Value extraction failures
Params
Type
All possible RQL data types
Value
A RQL value, represented as a native Rust type.

Traits§

TryFromValue
Trait for strict extraction of Rust types from Value.
TryFromValueCoerce
Trait for widening extraction of Rust types from Value.

Derive Macros§

FromFrame
Derives FromFrame for a struct, enabling deserialization from a Frame.