MCPcopy Create free account
hub / github.com/encrypted-spaces/prototype / update

Method update

sdk/src/table.rs:174–176  ·  view source on GitHub ↗

Begin building an `UPDATE` query on this table. The returned [`UpdateBuilder `] lets you specify sets and predicates. # Examples ```ignore let affected = users .update() .set("name", "Ada Lovelace") .where_eq("id", 1) .execute()?; ```

(&self)

Source from the content-addressed store, hash-verified

172 /// .execute()?;
173 /// ```
174 pub fn update(&self) -> UpdateBuilder<T, Unpredicated> {
175 UpdateBuilder::new(self.name.clone(), Arc::clone(&self.space))
176 }
177
178 /// Begin building a `DELETE` query on this table.
179 ///

Callers 15

build_fixtureFunction · 0.80
build_cycle_fixtureFunction · 0.80
run_realistic_sequenceFunction · 0.80
build_fixtureFunction · 0.80
run_channel_updateFunction · 0.80
build_chat_cyclesFunction · 0.80
build_fixtureFunction · 0.80
apply_table_sequenceFunction · 0.80
hashstore_hashFunction · 0.80
XOFFunction · 0.80
PRF1Function · 0.80
PRF2Function · 0.80

Calls 1

cloneMethod · 0.45

Tested by 6

XOFFunction · 0.64
PRF1Function · 0.64
PRF2Function · 0.64
test_crud_operationsFunction · 0.64