pub struct PiscemGeomDesc {
pub read1_desc: String,
pub read2_desc: String,
}Expand description
This struct holds a piscem compatible
description of the fragment geometry specification.
Fields§
§read1_desc: StringThe piscem format specification for read 1.
read2_desc: StringThe piscem format specification for read 2.
Implementations§
Source§impl PiscemGeomDesc
impl PiscemGeomDesc
Sourcepub fn from_geom_pieces(
geom_pieces_r1: &[GeomPiece],
geom_pieces_r2: &[GeomPiece],
) -> Self
pub fn from_geom_pieces( geom_pieces_r1: &[GeomPiece], geom_pieces_r2: &[GeomPiece], ) -> Self
This constructor builds the piscem format descriptor for this fragment
library from a slice of the constituent GeomPieces for read 1 (geom_pieces_r1)
and a slice of the GeomPieces for read 2 (geom_pieces_r2).
Trait Implementations§
Source§impl AppendToCmdArgs for PiscemGeomDesc
impl AppendToCmdArgs for PiscemGeomDesc
Source§impl Debug for PiscemGeomDesc
impl Debug for PiscemGeomDesc
Source§impl PartialEq for PiscemGeomDesc
impl PartialEq for PiscemGeomDesc
impl Eq for PiscemGeomDesc
impl StructuralPartialEq for PiscemGeomDesc
Auto Trait Implementations§
impl Freeze for PiscemGeomDesc
impl RefUnwindSafe for PiscemGeomDesc
impl Send for PiscemGeomDesc
impl Sync for PiscemGeomDesc
impl Unpin for PiscemGeomDesc
impl UnwindSafe for PiscemGeomDesc
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