macro_rules! impl_dep_obj {
    (
        $($token:tt)+
    ) => { ... };
}
Expand description

Specifies dependency objects list and accessing methods in simplified form.

Accepts input in the following form:

$(
    $Id:ty
|
    <$generics> $Id:ty $(where $where_clause)?
)
{
    $($(
        $(optional)? $(type $ty:ty | trait $tr:path) =>
            $StatePart:ty $({ . $state_part_field:tt })? | . $component_field:tt
    ),+ $(,)?)?
}