pub struct SyntenyBlock {
pub seq1: usize,
pub start1: f64,
pub end1: f64,
pub seq2: usize,
pub start2: f64,
pub end2: f64,
pub strand: Strand,
pub color: Option<String>,
}Expand description
A collinear block connecting a region on seq1 to a region on seq2.
Fields§
§seq1: usize§start1: f64§end1: f64§seq2: usize§start2: f64§end2: f64§strand: Strand§color: Option<String>Trait Implementations§
Source§impl Clone for SyntenyBlock
impl Clone for SyntenyBlock
Source§fn clone(&self) -> SyntenyBlock
fn clone(&self) -> SyntenyBlock
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 moreAuto Trait Implementations§
impl Freeze for SyntenyBlock
impl RefUnwindSafe for SyntenyBlock
impl Send for SyntenyBlock
impl Sync for SyntenyBlock
impl Unpin for SyntenyBlock
impl UnsafeUnpin for SyntenyBlock
impl UnwindSafe for SyntenyBlock
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
Source§fn to_owned_obj(&self, data: FontData<'_>) -> U
fn to_owned_obj(&self, data: FontData<'_>) -> U
Convert this type into
T, using the provided data to resolve any offsets.