pub struct LineDiffLimits {
pub scratch_bytes: u64,
pub max_lines: u64,
pub max_work: u64,
}Expand description
Admission caps for one equal-run LCS visit.
Fields§
§scratch_bytes: u64§max_lines: u64§max_work: u64Implementations§
Trait Implementations§
Source§impl Clone for LineDiffLimits
impl Clone for LineDiffLimits
Source§fn clone(&self) -> LineDiffLimits
fn clone(&self) -> LineDiffLimits
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LineDiffLimits
Source§impl Debug for LineDiffLimits
impl Debug for LineDiffLimits
impl Eq for LineDiffLimits
Source§impl PartialEq for LineDiffLimits
impl PartialEq for LineDiffLimits
impl StructuralPartialEq for LineDiffLimits
Auto Trait Implementations§
impl Freeze for LineDiffLimits
impl RefUnwindSafe for LineDiffLimits
impl Send for LineDiffLimits
impl Sync for LineDiffLimits
impl Unpin for LineDiffLimits
impl UnsafeUnpin for LineDiffLimits
impl UnwindSafe for LineDiffLimits
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