[][src]Struct specs_task::AlreadyJoined

pub struct AlreadyJoined {
    pub parent: Entity,
    pub already_child: Entity,
    pub new_child: Entity,
}

This error means that you tried to join an entity that was already joined (has a SingleEdge).

Fields

parent: Entityalready_child: Entitynew_child: Entity

Trait Implementations

impl Clone for AlreadyJoined[src]

impl Debug for AlreadyJoined[src]

impl Display for AlreadyJoined[src]

impl Eq for AlreadyJoined[src]

impl Error for AlreadyJoined[src]

impl PartialEq<AlreadyJoined> for AlreadyJoined[src]

impl StructuralEq for AlreadyJoined[src]

impl StructuralPartialEq for AlreadyJoined[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> Event for T where
    T: Send + Sync + 'static, 

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

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

impl<T> Resource for T where
    T: Any + Send + Sync

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.