pub trait Unfold<T> {
    // Required method
    fn unfolded(value: T) -> Self;
}
Expand description

denotes that this struct unfolds into something else. Usually means that the struct is “object oriented”, and can be unfolded into an ECS compliant variant.

Required Methods§

source

fn unfolded(value: T) -> Self

Object Safety§

This trait is not object safe.

Implementors§