pub struct Link<T: OptFields> {
pub from: String,
pub from_dir: bool,
pub to: String,
pub to_dir: bool,
pub overlap: String,
pub opt: T,
}
Expand description
GFA link line
Fields:
- From
- From direction
- To
- To direction
- Overlap (Link + containment)
- Ops
Comment: Representation of “edges”
Fields§
§from: String
§from_dir: bool
§to: String
§to_dir: bool
§overlap: String
§opt: T
Trait Implementations§
impl<T: OptFields> StructuralPartialEq for Link<T>
Auto Trait Implementations§
impl<T> Freeze for Link<T>where
T: Freeze,
impl<T> RefUnwindSafe for Link<T>where
T: RefUnwindSafe,
impl<T> Send for Link<T>where
T: Send,
impl<T> Sync for Link<T>where
T: Sync,
impl<T> Unpin for Link<T>where
T: Unpin,
impl<T> UnwindSafe for Link<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