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
sourceimpl<'de, T> Deserialize<'de> for ExclusionDiff<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for ExclusionDiff<T>where
T: Deserialize<'de>,
sourcefn 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
Auto Trait Implementations
impl<T> RefUnwindSafe for ExclusionDiff<T>where
T: RefUnwindSafe,
impl<T> Send for ExclusionDiff<T>where
T: Send,
impl<T> Sync for ExclusionDiff<T>where
T: Sync,
impl<T> Unpin for ExclusionDiff<T>where
T: Unpin,
impl<T> UnwindSafe for ExclusionDiff<T>where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more