Code Monkey home page Code Monkey logo

Comments (4)

dtolnay avatar dtolnay commented on July 29, 2024

I don't plan to support this. You need to either define the struct inside the ffi bridge to share its fields, or define it outside and treat it as an opaque Rust type with accessors for whichever fields the other language would require access to.

pub struct NamedPoint {
    name: String,
    x: i32,
    y: i32,
}

#[cxx::bridge]
mod ffi {
    extern "Rust" {
        type NamedPoint;
        fn named_point_x(pt: &NamedPoint) -> i32;
        fn named_point_y(pt: &NamedPoint) -> i32;
    }
}

fn named_point_x(pt: &NamedPoint) -> i32 { pt.x }
fn named_point_y(pt: &NamedPoint) -> i32 { pt.y }

from cxx.

sayrer avatar sayrer commented on July 29, 2024

OK. I was only asking how to do it, not insisting on a solution. would your example work with this function?

fn named_point_name(pt: &NamedPoint) -> String;

that's the case I'm interested in.

from cxx.

dtolnay avatar dtolnay commented on July 29, 2024

Yes that would work exactly as you wrote it. I left it out because you left out pub on name at the top.

from cxx.

sayrer avatar sayrer commented on July 29, 2024

My mistake, thanks. FWIW, an example showing this use case would be helpful, imho.

Thanks for writing this library. I'll probably have to wait until March to start using it, but it looks good. I would only need support for Vec to make things pretty smooth.

from cxx.

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.