pub struct BrandNeed {
pub make: String,
pub lanes: Vec<AutoLane>,
pub capabilities: Vec<CapabilityName>,
}Expand description
A requested vehicle make, lanes, and optional capability ceiling.
Fields§
§make: StringRequested vehicle make, such as volvo or mercedes-benz.
lanes: Vec<AutoLane>Lanes required for the current bay action.
capabilities: Vec<CapabilityName>Capabilities the selected site must be allowed to hold.
Implementations§
Trait Implementations§
impl Eq for BrandNeed
impl StructuralPartialEq for BrandNeed
Auto Trait Implementations§
impl Freeze for BrandNeed
impl RefUnwindSafe for BrandNeed
impl Send for BrandNeed
impl Sync for BrandNeed
impl Unpin for BrandNeed
impl UnsafeUnpin for BrandNeed
impl UnwindSafe for BrandNeed
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