pub struct Exon {
pub exon_number: u32,
pub start: u64,
pub end: u64,
}Expand description
An exon within a transcript (0-based coordinates).
Fields§
§exon_number: u32§start: u640-based start (inclusive).
end: u640-based end (exclusive).
Implementations§
Trait Implementations§
impl Eq for Exon
impl StructuralPartialEq for Exon
Auto Trait Implementations§
impl Freeze for Exon
impl RefUnwindSafe for Exon
impl Send for Exon
impl Sync for Exon
impl Unpin for Exon
impl UnsafeUnpin for Exon
impl UnwindSafe for Exon
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