pub struct NormalizationResult {
pub path: Vec<isize>,
pub starts_with_shared: bool,
}
Expand description
The result of optimize_partition
. This is mostly used by shared_segments
.
Fields§
§path: Vec<isize>
Implementations§
Source§impl NormalizationResult
impl NormalizationResult
The shared segments between both inputs of optimize_partition
.
The seq
argument is the longest of the two inputs.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NormalizationResult
impl RefUnwindSafe for NormalizationResult
impl Send for NormalizationResult
impl Sync for NormalizationResult
impl Unpin for NormalizationResult
impl UnwindSafe for NormalizationResult
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