[][src]Struct floaout::format::BubbleFieldSize

pub struct BubbleFieldSize {
    pub length: u8,
    pub width: u8,
    pub height: u8,
}

This structure is each size of Bubble field.

Fields

length: u8

This is length of Bubble field.

2^length
width: u8

This is width of Bubble field.

2^width
height: u8

This is height of Bubble field.

2^height

Trait Implementations

impl Clone for BubbleFieldSize[src]

impl Copy for BubbleFieldSize[src]

impl Debug for BubbleFieldSize[src]

impl Default for BubbleFieldSize[src]

impl Eq for BubbleFieldSize[src]

impl From<(u8, u8, u8)> for BubbleFieldSize[src]

impl From<(usize, usize, usize)> for BubbleFieldSize[src]

impl Hash for BubbleFieldSize[src]

impl Into<(u8, u8, u8)> for BubbleFieldSize[src]

impl Ord for BubbleFieldSize[src]

impl PartialEq<BubbleFieldSize> for BubbleFieldSize[src]

impl PartialOrd<BubbleFieldSize> for BubbleFieldSize[src]

impl<R: Read + ?Sized> ReadBytes<BubbleFieldSize> for R[src]

impl StructuralEq for BubbleFieldSize[src]

impl StructuralPartialEq for BubbleFieldSize[src]

impl TryInto<(usize, usize, usize)> for BubbleFieldSize[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl<W: Write + ?Sized> WriteBytes<BubbleFieldSize> for W[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.