Giter Club home page Giter Club logo

Comments (3)

jgallagher avatar jgallagher commented on May 25, 2024

Hmm, yeah, I think you're right. The intent was to make sure the caller couldn't collect the SqliteRow handles being passed into the closure; e.g.,

let rows = query.query_map(&[], |row| row);

but even without the T: 'static I don't think it's possible to get this to compile. I wonder if a solution to this open bug (related to this SO question about closures that return references) would make it possible to write this, at which point the T: 'static would no longer be redundant. What do you think?

from rusqlite.

krdln avatar krdln commented on May 25, 2024

Oh, now I see the reason of that static. But the worst thing that would happen, if somebody's collected these rows, would be just a panic, nothing more, right?

So if the 'static were removed, the bug (still not fixed 😞) wouldn't prevent returning rows from a closure (the workarounds are really simple (create standalone fn or just don't use annotations)).

But I think there's a way to prevent collecting rows without restricting T! I you'd change the F type inside MappedRows from FnMut(SqliteRow) -> T to FnMut(&SqliteRow) -> T, Rust would naturally prevent the short-lived reference from escaping the closure body. And since SqliteRow is not Copy, then no panics guaranteed! (expect of somebody calling .get(999) of course.

from rusqlite.

jgallagher avatar jgallagher commented on May 25, 2024

But the worst thing that would happen, if somebody's collected these rows, would be just a panic, nothing more, right?

Correct. And actually just collecting them is fine; it'd just panic if someone tried to use a collected row other than the last one.

I you'd change the F type inside MappedRows from FnMut(SqliteRow) -> T to FnMut(&SqliteRow) -> T, Rust would naturally prevent the short-lived reference from escaping the closure body.

Ahh, that's a great point. Will make that change shortly.

from rusqlite.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.