22 lines
495 B
Rust
22 lines
495 B
Rust
use crate::dbs::Options;
|
|
use crate::dbs::Runtime;
|
|
use crate::dbs::Transaction;
|
|
use crate::err::Error;
|
|
use crate::sql::part::Part;
|
|
use crate::sql::thing::Thing;
|
|
use crate::sql::value::Value;
|
|
use once_cell::sync::Lazy;
|
|
|
|
static RID: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("id")]);
|
|
|
|
impl Value {
|
|
pub async fn def(
|
|
&mut self,
|
|
ctx: &Runtime,
|
|
opt: &Options,
|
|
txn: &Transaction,
|
|
val: &Thing,
|
|
) -> Result<(), Error> {
|
|
self.set(ctx, opt, txn, RID.as_ref(), val.clone().into()).await
|
|
}
|
|
}
|