pub trait FindTag {
// Required method
fn name(&self) -> &str;
// Provided method
fn platform(&self) -> Option<PlatformId> { ... }
}Available on crate feature
utils only.pub trait FindTag {
// Required method
fn name(&self) -> &str;
// Provided method
fn platform(&self) -> Option<PlatformId> { ... }
}utils only.