Home
last modified time | relevance | path

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

/external/rust/android-crates-io/crates/annotate-snippets/tests/diff/
Dmod.rs7 let Changeset { diffs, .. } = Changeset::new(left, right, "\n"); in get_diff() localVariable
18 let Changeset { diffs, .. } = Changeset::new(y, x, " "); in get_diff() localVariable
/external/rust/android-crates-io/crates/rusqlite/src/
Dsession.rs112 pub fn changeset(&mut self) -> Result<Changeset> { in changeset()
134 pub fn patchset(&mut self) -> Result<Changeset> { in patchset()
257 pub struct Changeset { struct
262 impl Changeset { argument
265 pub fn invert(&self) -> Result<Changeset> { in invert()
288 pub fn concat(a: &Changeset, b: &Changeset) -> Result<Changeset> { in concat()
298 impl Drop for Changeset { implementation
559 pub fn output(&mut self) -> Result<Changeset> { in output()
591 pub fn apply<F, C>(&self, cs: &Changeset, filter: Option<F>, conflict: C) -> Result<()> in apply()