pub struct Edges<T: OptFields> {
pub id: u32,
pub source_name: String,
pub sink_name: String,
pub source_dir: bool,
pub sink_dir: bool,
pub source_begin: u32,
pub source_end: u32,
pub sink_begin: u32,
pub sink_end: u32,
pub ends: u8,
pub alignment: String,
pub opts: T,
}Expand description
GFA edge line
Edges are connection between segments (v2) More information can be found here: https://gfa-spec.github.io/GFA-spec/GFA2.html#:~:text=GFA2%20is%20a%20generalization%20of,giving%20rise%20to%20each%20sequence.
Fields§
§id: u32§source_name: String§sink_name: String§source_dir: bool§sink_dir: bool§source_begin: u32§source_end: u32§sink_begin: u32§sink_end: u32§ends: u8§alignment: String§opts: TTrait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Edges<T>where
T: Freeze,
impl<T> RefUnwindSafe for Edges<T>where
T: RefUnwindSafe,
impl<T> Send for Edges<T>where
T: Send,
impl<T> Sync for Edges<T>where
T: Sync,
impl<T> Unpin for Edges<T>where
T: Unpin,
impl<T> UnwindSafe for Edges<T>where
T: UnwindSafe,
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