[][src]Trait rosy::num::pack::Word

pub unsafe trait Word: Copy {
    const IS_SIGNED: bool;
    const ZERO: Self;
}

A type whose bytes can be directly used as a word when (un)packing an Integer.

Associated Constants

const IS_SIGNED: bool

Whether the type is a signed integer.

const ZERO: Self

Self instantiated as 0.

Loading content...

Implementations on Foreign Types

impl Word for usize[src]

impl Word for u128[src]

impl Word for u64[src]

impl Word for u32[src]

impl Word for u16[src]

impl Word for u8[src]

impl Word for isize[src]

impl Word for i128[src]

impl Word for i64[src]

impl Word for i32[src]

impl Word for i16[src]

impl Word for i8[src]

Loading content...

Implementors

Loading content...