[][src]Struct fable_data::LevHeightmapCell

pub struct LevHeightmapCell {
    pub size: u32,
    pub version: u8,
    pub height: f32,
    pub ground_theme: (u8, u8, u8),
    pub ground_theme_strength: (u8, u8),
    pub walkable: bool,
    pub passover: bool,
    pub sound_theme: u8,
    pub shore: bool,
}

Fields

size: u32version: u8height: f32ground_theme: (u8, u8, u8)ground_theme_strength: (u8, u8)walkable: boolpassover: boolsound_theme: u8shore: bool

Trait Implementations

impl Debug for LevHeightmapCell[src]

impl PartialEq<LevHeightmapCell> for LevHeightmapCell[src]

impl StructuralPartialEq for LevHeightmapCell[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, 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.