Home
last modified time | relevance | path

Searched defs:Changeset (Results 1 – 1 of 1) sorted by relevance

/external/rust/crates/rusqlite/src/
Dsession.rs116 pub fn changeset(&mut self) -> Result<Changeset> { in changeset()
138 pub fn patchset(&mut self) -> Result<Changeset> { in patchset()
261 pub struct Changeset { struct
266 impl Changeset { argument
269 pub fn invert(&self) -> Result<Changeset> { in invert()
292 pub fn concat(a: &Changeset, b: &Changeset) -> Result<Changeset> { in concat()
302 impl Drop for Changeset { implementation
551 pub fn output(&mut self) -> Result<Changeset> { in output()
583 pub fn apply<F, C>(&self, cs: &Changeset, filter: Option<F>, conflict: C) -> Result<()> in apply()