pub trait CapacityDimension<T: LoadOps> {
    // Required methods
    fn set_capacity(&mut self, demand: T) -> &mut Self;
    fn get_capacity(&self) -> Option<&T>;
}
Expand description

A trait to get or set vehicle’s capacity.

Required Methods§

source

fn set_capacity(&mut self, demand: T) -> &mut Self

Sets capacity.

source

fn get_capacity(&self) -> Option<&T>

Gets capacity.

Object Safety§

This trait is not object safe.

Implementors§