surrealpatch/lib/src/doc/document.rs

21 lines
439 B
Rust
Raw Normal View History

use crate::sql::thing::Thing;
use crate::sql::value::Value;
use std::borrow::Cow;
#[derive(Clone, Debug, Default, Eq, PartialEq)]
pub struct Document<'a> {
pub(super) id: Option<Thing>,
pub(super) current: Cow<'a, Value>,
pub(super) initial: Cow<'a, Value>,
}
impl<'a> Document<'a> {
pub fn new(id: Option<Thing>, val: &'a Value) -> Self {
Document {
id,
current: Cow::Borrowed(val),
initial: Cow::Borrowed(val),
}
}
}