pub struct RouteTarget<'a> {
pub id: String,
pub fabric: &'a dyn EvalFabric,
pub required_capabilities: Vec<Symbol>,
pub card: Option<String>,
}Expand description
One eval target in a cost-ordered route ladder.
Fields§
§id: StringStable route id recorded in provenance and attempt reports.
fabric: &'a dyn EvalFabricEval fabric used for this target.
required_capabilities: Vec<Symbol>Capabilities this concrete target requires in addition to the packet request capabilities.
card: Option<String>Optional model or placement card recorded when this target answers.
Implementations§
Source§impl<'a> RouteTarget<'a>
impl<'a> RouteTarget<'a>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for RouteTarget<'a>
impl<'a> !UnwindSafe for RouteTarget<'a>
impl<'a> Freeze for RouteTarget<'a>
impl<'a> Send for RouteTarget<'a>
impl<'a> Sync for RouteTarget<'a>
impl<'a> Unpin for RouteTarget<'a>
impl<'a> UnsafeUnpin for RouteTarget<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more