typeables 2.3.0

Typeables: Rust crate of type aliases. By SixArm.com.
Documentation
//! # DegreeCelcius
//!
//! Examples:
//!
//! ```rust
//! # use typeables::degree_celcius::*;
//! let x = DegreeCelciusAsStructF64(1.0);
//! ```
//!
//! <https://wikipedia.org/wiki/DegreeCelcius>
//!
//! The degree celcius is a unit of temperature.
//!
//! It is a derived unit in the International System of Units (SI).
//
//! The SI unit symbol is °C.

//// DegreeCelcius

pub struct DegreeCelciusAsStructI8(pub i8);
pub struct DegreeCelciusAsStructI16(pub i16);
pub struct DegreeCelciusAsStructI32(pub i32);
pub struct DegreeCelciusAsStructI64(pub i64);
pub struct DegreeCelciusAsStructI128(pub i128);
pub struct DegreeCelciusAsStructISize(pub isize);
pub struct DegreeCelciusAsStructU8(pub u8);
pub struct DegreeCelciusAsStructU16(pub u16);
pub struct DegreeCelciusAsStructU32(pub u32);
pub struct DegreeCelciusAsStructU64(pub u64);
pub struct DegreeCelciusAsStructU128(pub u128);
pub struct DegreeCelciusAsStructUSize(pub usize);
pub struct DegreeCelciusAsStructF32(pub f32);
pub struct DegreeCelciusAsStructF64(pub f64);

pub type DegreeCelciusAsTypeI8 = i8;
pub type DegreeCelciusAsTypeI16 = i16;
pub type DegreeCelciusAsTypeI32 = i32;
pub type DegreeCelciusAsTypeI64 = i64;
pub type DegreeCelciusAsTypeI128 = i128;
pub type DegreeCelciusAsTypeISize = isize;
pub type DegreeCelciusAsTypeU8 = u8;
pub type DegreeCelciusAsTypeU16 = u16;
pub type DegreeCelciusAsTypeU32 = u32;
pub type DegreeCelciusAsTypeU64 = u64;
pub type DegreeCelciusAsTypeU128 = u128;
pub type DegreeCelciusAsTypeUSize = usize;
pub type DegreeCelciusAsTypeF32 = f32;
pub type DegreeCelciusAsTypeF64 = f64;