[][src]Struct babalgame::Tunnel

pub struct Tunnel { /* fields omitted */ }

Implementations

impl Tunnel[src]

pub fn width(&self, _owner: &Spatial) -> usize[src]

pub fn len(&self, _owner: &Spatial) -> usize[src]

pub fn first(&self, _owner: &Spatial) -> isize[src]

pub fn last(&self, _owner: &Spatial) -> isize[src]

pub fn item(
    &self,
    _owner: &Spatial,
    col: isize,
    row: isize,
    now_msec: i64
) -> i64
[src]

Trait Implementations

impl NativeClass for Tunnel[src]

type Base = Spatial

Base type of the class. Read more

type UserData = DefaultUserData<Tunnel>

User-data wrapper type of the class. Read more

impl NativeClassMethods for Tunnel[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,