mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-18 00:54:19 +01:00
17 lines
335 B
Rust
17 lines
335 B
Rust
use crate::types::ImmutableRecord;
|
|
|
|
#[derive(Default)]
|
|
pub struct PseudoCursor {
|
|
current: Option<ImmutableRecord>,
|
|
}
|
|
|
|
impl PseudoCursor {
|
|
pub fn record(&self) -> Option<&ImmutableRecord> {
|
|
self.current.as_ref()
|
|
}
|
|
|
|
pub fn insert(&mut self, record: ImmutableRecord) {
|
|
self.current = Some(record);
|
|
}
|
|
}
|