pub trait HasBundleKind: Send + Sync {
type BundleKind: BundleKind;
// Required method
fn kind(&self) -> Self::BundleKind;
}Expand description
A construct with an associated BundleKind.
Required Associated Types§
Sourcetype BundleKind: BundleKind
type BundleKind: BundleKind
The Rust type of the BundleKind associated with this bundle.
Required Methods§
Sourcefn kind(&self) -> Self::BundleKind
fn kind(&self) -> Self::BundleKind
Returns the BundleKind of this bundle.