Coder Social home page Coder Social logo

codetest-boardingpass-rust's People

Contributors

fjbelchi avatar steveklabnik avatar

Watchers

 avatar  avatar

Forkers

steveklabnik

codetest-boardingpass-rust's Issues

Re: twitter

Hey there! https://twitter.com/rustlang/status/675324631268593665

Okay, so here's the issue:

pub fn generate() -> Vec<Box<BoardingPass>> {
    let mut vector: Vec<Box<BoardingPass>> = Vec::new();
    let madrid = City::new("Madrid".to_string());
    let barna = City::new("Barna".to_string());

    let madrid_barna = BoardingPassTrain::new("1", &madrid, &barna);
    vector.push(Box::new(madrid_barna));

    let barna_madrid = BoardingPassTrain::new("2", &barna, &madrid);
    vector.push(Box::new(barna_madrid));

    vector
}

The problem is, because you define madrid and barna in this function, when it returns, they'll go away. But you want a reference to them, which will point to nothing if that happens! That's why the compiler complains.

One way to solve it is to do #2. This makes the references come in as arguments, so that way, they won't go away after the function is over. Since your main.rs is empty right now, though, I can't see if this is the 100% best way, but it's what I would try at first. The other way is to use Rc<T>....

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.