Struct amethyst_core::transform::components::Parent[][src]

pub struct Parent {
    pub entity: Entity,
}

Component for defining a parent entity.

The entity with this component has a parent, rather than is a parent.

Fields

The parent entity

Trait Implementations

impl Debug for Parent
[src]

Formats the value using the given formatter. Read more

impl Clone for Parent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for Parent
[src]

impl Ord for Parent
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl PartialEq for Parent
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for Parent
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Component for Parent
[src]

Associated storage type for this component.

impl HParent for Parent
[src]

Retrieves the parent Entity.

Auto Trait Implementations

impl Send for Parent

impl Sync for Parent