pub struct GapDescription {
pub index: usize,
pub description: String,
pub gap_type: GapType,
pub context_before: String,
pub context_after: String,
}Expand description
Description of a gap between patterns.
Fields§
§index: usize§description: String§gap_type: GapType§context_before: String§context_after: StringTrait Implementations§
Source§impl Clone for GapDescription
impl Clone for GapDescription
Source§fn clone(&self) -> GapDescription
fn clone(&self) -> GapDescription
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GapDescription
impl RefUnwindSafe for GapDescription
impl Send for GapDescription
impl Sync for GapDescription
impl Unpin for GapDescription
impl UnsafeUnpin for GapDescription
impl UnwindSafe for GapDescription
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