pub struct Overlap {
pub overlap_str_from_f: Option<String>,
pub overlap_str_from_r: Option<String>,
pub overlap_str_to_f: Option<String>,
pub overlap_str_to_r: Option<String>,
pub from_segment: usize,
pub to_segment: usize,
pub from_orient: Orientation,
pub to_orient: Orientation,
}Expand description
Overlap from one segment to another.
Fields
overlap_str_from_f: Option<String>From segment forward.
overlap_str_from_r: Option<String>From segment reverse.
overlap_str_to_f: Option<String>To segment forward.
overlap_str_to_r: Option<String>To segment reverse.
from_segment: usizeID of from segment.
to_segment: usizeID of to segment.
from_orient: OrientationOrientation of from segment.
to_orient: OrientationOrientation of to segment.
Auto Trait Implementations
impl RefUnwindSafe for Overlap
impl Send for Overlap
impl Sync for Overlap
impl Unpin for Overlap
impl UnwindSafe for Overlap
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more