ifstructs 0.1.0

A Rust library with native bindings to unix if* structures
Documentation
ifstructs
=========

A Rust library with native bindings to unix `if*` structures

[![Build Status](https://travis-ci.org/glebpom/rust-ifstructs.svg?branch=master)](https://travis-ci.org/glebpom/rust-ifstructs)
[![Latest version](https://img.shields.io/crates/v/ifstructs.svg)](https://crates.io/crates/ifstructs)
[![Documentation](https://docs.rs/ifstructs/badge.svg)](https://docs.rs/ifstructs)
![License](https://img.shields.io/crates/i/ifstructs.svg)


## Usage

First, add the following to your `Cargo.toml`:

```toml
[dependencies]
ifstructs = "0.0.1"
```

Next, add this to your crate:

```rust
extern crate ifstructs;

use ifstructs::ifreq;

fn main() {
  let mut req = ifreq::from_name("eth0").unwrap();
  
  ...
}

```