Struct gfa::gfa::Containment[][src]

pub struct Containment<N, T: OptFields> {
    pub container_name: N,
    pub container_orient: Orientation,
    pub contained_name: N,
    pub contained_orient: Orientation,
    pub pos: usize,
    pub overlap: Vec<u8>,
    pub optional: T,
}

Fields

container_name: Ncontainer_orient: Orientationcontained_name: Ncontained_orient: Orientationpos: usizeoverlap: Vec<u8>optional: T

Trait Implementations

impl<N: Clone, T: Clone + OptFields> Clone for Containment<N, T>[src]

impl<N: Debug, T: Debug + OptFields> Debug for Containment<N, T>[src]

impl<N: Default, T: Default + OptFields> Default for Containment<N, T>[src]

impl<N: Hash, T: Hash + OptFields> Hash for Containment<N, T>[src]

impl<N: PartialEq, T: PartialEq + OptFields> PartialEq<Containment<N, T>> for Containment<N, T>[src]

impl<N: PartialOrd, T: PartialOrd + OptFields> PartialOrd<Containment<N, T>> for Containment<N, T>[src]

impl<N, T: OptFields> StructuralPartialEq for Containment<N, T>[src]

Auto Trait Implementations

impl<N, T> RefUnwindSafe for Containment<N, T> where
    N: RefUnwindSafe,
    T: RefUnwindSafe
[src]

impl<N, T> Send for Containment<N, T> where
    N: Send,
    T: Send
[src]

impl<N, T> Sync for Containment<N, T> where
    N: Sync,
    T: Sync
[src]

impl<N, T> Unpin for Containment<N, T> where
    N: Unpin,
    T: Unpin
[src]

impl<N, T> UnwindSafe for Containment<N, T> where
    N: UnwindSafe,
    T: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.