pub trait ExpertTier: Send {
// Required methods
fn fetch(
&mut self,
key: ExpertKey,
slot: ArenaSlot,
stream: u64,
) -> Result<ExpertResidency>;
fn kind(&self) -> TierKind;
// Provided method
fn healthy(&self) -> bool { ... }
}Expand description
Fetch an expert record into a slot; return the addresses to patch.