1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// This file is part of network. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/network/master/COPYRIGHT. No part of network, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
// Copyright © 2018 The developers of network. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/network/master/COPYRIGHT.


#![allow(non_upper_case_globals)]
#![deny(missing_docs)]
#![feature(const_fn)]


//! # network-endian
//!
//! Unsigned integers to make it easier and more efficient to work with network endian data.


extern crate serde;
#[macro_use] extern crate serde_derive;


use ::serde::Serialize;
use ::serde::de::DeserializeOwned;
use ::std::cmp::Eq;
use ::std::cmp::Ord;
use ::std::cmp::Ordering;
use ::std::cmp::PartialOrd;
use ::std::fmt;
use ::std::fmt::Debug;
use ::std::fmt::Display;
use ::std::fmt::Formatter;
use ::std::mem::transmute_copy;
use ::std::hash::Hash;
use ::std::hash::Hasher;


include!("NetworkEndian.rs");
include!("NetworkEndianU16.rs");
include!("NetworkEndianU32.rs");
include!("NetworkEndianU128.rs");