pub struct LcsResult {
pub matches: Vec<LcsMatch>,
pub len: usize,
}
Expand description
Result for the lcs
command
Fields§
§matches: Vec<LcsMatch>
§len: usize
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LcsResult
impl RefUnwindSafe for LcsResult
impl Send for LcsResult
impl Sync for LcsResult
impl Unpin for LcsResult
impl UnwindSafe for LcsResult
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