Giter Club home page Giter Club logo

mrt's Issues

Provide example of how to read specific message types from enum

Personally, as a newer rust user, I'm struggling with the lack of examples in this repository, though it works great for parsing.

Specifically, when trying to match an entry's message to it's type, I get:

error[E0532]: expected unit struct/variant or constant, found struct variant `MrtMessage::RIB_IPV4_UNICAST`
  --> src/main.rs:26:33
   |
26 |                                 MrtMessage::RIB_IPV4_UNICAST => println!("{:?}", entry.message),
   |                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ did you mean `MrtMessage::RIB_IPV4_UNICAST { /* fields */ }`?
help: possible better candidate is found in another module, you can import it into scope

This is part of:

use std::path::Path;
use std::fs::File;
use std::io::BufReader;

use libflate::gzip::Decoder;
use mrt::{MrtFile, MrtSubType, MrtMessage};
use indicatif::ProgressBar;


fn main() {
    {
        let bar = ProgressBar::new(245);
        let p = Path::new("rib_dump");
        for entry in p.read_dir().expect("read_dir call failed") {
            bar.inc(1);
            if let Ok(entry) = entry {
                let f = File::open(entry.path()).unwrap();
                let decoder = Decoder::new(BufReader::new(f)).unwrap();
                let mrtfile = MrtFile::new(decoder);

                println!("Beginning to read");
                for entry in mrtfile {
                    match entry.mrt_header.mrt_subtype {
                        MrtSubType::RIB_IPV4_UNICAST => {
                            match entry.message {
                                MrtMessage::RIB_IPV4_UNICAST => println!("{:?}", entry.message),
                                _ => continue,
                            }
                        },
                        _ => continue,
                    }
                }
            }
        }
        bar.finish();
    }
    println!("End scope!")
}

Are you able to provide an example of how this should work?

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.