pub struct Esa<T> {
pub sa: Vec<T>,
pub l: Vec<T>,
pub r: Vec<T>,
pub d: Vec<T>,
pub m: T,
}
Expand description
Representation of a computed enhanced suffix array.
Fields§
§sa: Vec<T>
§l: Vec<T>
§r: Vec<T>
§d: Vec<T>
§m: T
Implementations§
Trait Implementations§
impl<T: Eq> Eq for Esa<T>
impl<T> StructuralPartialEq for Esa<T>
Auto Trait Implementations§
impl<T> Freeze for Esa<T>where
T: Freeze,
impl<T> RefUnwindSafe for Esa<T>where
T: RefUnwindSafe,
impl<T> Send for Esa<T>where
T: Send,
impl<T> Sync for Esa<T>where
T: Sync,
impl<T> Unpin for Esa<T>where
T: Unpin,
impl<T> UnwindSafe for Esa<T>where
T: UnwindSafe,
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