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

Method delete

sdk/src/table.rs:190–192  ·  view source on GitHub ↗

Begin building a `DELETE` query on this table. The returned [`DeleteBuilder `] lets you specify predicates. # Examples ```ignore let removed = users .delete() .where_eq("id", 1) .execute()?; ```

(&self)

Source from the content-addressed store, hash-verified

188 /// .execute()?;
189 /// ```
190 pub fn delete(&self) -> DeleteBuilder<T, Unpredicated> {
191 DeleteBuilder::new(self.name.clone(), Arc::clone(&self.space))
192 }
193}
194
195impl<T> Clone for Table<T> {

Callers 15

build_fixtureFunction · 0.45
build_cycle_fixtureFunction · 0.45
run_realistic_sequenceFunction · 0.45
build_fixtureFunction · 0.45
fs_delete_inode_directFunction · 0.45
build_chat_cyclesFunction · 0.45
build_fixtureFunction · 0.45
apply_table_sequenceFunction · 0.45
do_delete_by_predicateFunction · 0.45
do_textarea_deleteFunction · 0.45
remove_userMethod · 0.45

Calls 1

cloneMethod · 0.45