pub type StartupResource<'a> = Either<ResourceShared<'a>, ResourceExclusive<'a>>;

Aliased Type§

enum StartupResource<'a> {
    Left(ResourceShared<'a, Cluster>),
    Right(ResourceExclusive<'a, Cluster>),
}

Variants§

§

Left(ResourceShared<'a, Cluster>)

A value of type L.

§

Right(ResourceExclusive<'a, Cluster>)

A value of type R.