Giter Club home page Giter Club logo

Comments (2)

danielhenrymantilla avatar danielhenrymantilla commented on July 28, 2024

Indeed! FWIW, there is already support for higher-ranked function pointers (stateless), which can test with the ditto internal branch:

#[derive_ReprC] // Both these attrs will likely become `#[safer_ffi::repr(transparent)]`
#[repr(transparent)]
struct MyLoggerFnPointer(
    extern "C" fn(&log::Record<'_>),
);

One API for higher-ranked closures, right now, would be an API very similar to https://docs.rs/stackbox/0.1.2/stackbox/macro.custom_dyn.html (or at least that would be the general solution to #47):

#[safer_ffi::repr(C)] // Defines `BoxDynMyLogger<'_>`, `ArcDynMyLogger<'_>` types.
trait MyLogger : Send + Sync {
    fn call (self: &'_ Self, _: &log::Record<'_>);
}
  • Btw @Michael-F-Bryan, thanks to your blogpost, there may even be a #[safer_ffi::repr(C, thin)] option 🙃

If you have suggestions ideas for these things, I'm all ears 🙂

For the specific case of closures, I could also imagine using the same #[repr(transparent)] syntax showcased above, but directly supporting the repr_c::closure::… types:

#[derive_ReprC]
#[repr(transparent)]
struct MyLoggerClosure (
    repr_c::BoxDynClosure<fn(&log::Record<'_>)>, // <- optional future syntax for the closure types
);

from safer_ffi.

danielhenrymantilla avatar danielhenrymantilla commented on July 28, 2024

I know this is an old issue, but I wanted to gauge the situation at the moment, @Michael-F-Bryan:

  • safer-ffi nowadays supports FFI-safe dyn traits which can be Boxed, and which hopefully do support this generic lifetime param in input;
  • thanks to https://docs.rs/higher-kinded-types, it would be possible to express some ForFn<ForLt!(&log::Record<'_>)> kind of type, at least in the covariant case
    • (or ForFn<For!(<'a, 'b> = &'a log::Record<'b>)> in the invariant case)

from safer_ffi.

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.