Enum hlua_badtouch::TuplePushError [] [src]

pub enum TuplePushError<C, O> {
    First(C),
    Other(O),
}

Error that can happen when pushing multiple values at once.

Variants

Trait Implementations

impl<C: Debug, O: Debug> Debug for TuplePushError<C, O>
[src]

[src]

Formats the value using the given formatter. Read more

impl<C: Copy, O: Copy> Copy for TuplePushError<C, O>
[src]

impl<C: Clone, O: Clone> Clone for TuplePushError<C, O>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<TuplePushError<Void, Void>> for Void
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl<C, O> Send for TuplePushError<C, O> where
    C: Send,
    O: Send

impl<C, O> Sync for TuplePushError<C, O> where
    C: Sync,
    O: Sync