pub struct ExclusionDiff<T> {
pub before_cell_exclusion: Vec<T>,
pub after_cell_exclusion: Vec<T>,
}Fields§
§before_cell_exclusion: Vec<T>the results of the shortest-path calculation before the cells have been excluded from the graph.
after_cell_exclusion: Vec<T>the results of the shortest-path calculation after the cells have been excluded from the graph.
Trait Implementations§
source§impl<'de, T> Deserialize<'de> for ExclusionDiff<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for ExclusionDiff<T>where
T: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more