pub struct ValidationEntry {
pub header: String,
pub sequence: String,
pub species: String,
pub expected_positions: Vec<(Position, char)>,
}Expand description
A single validation entry with expected numbering
Fields§
§header: String§sequence: String§species: String§expected_positions: Vec<(Position, char)>Trait Implementations§
Source§impl Clone for ValidationEntry
impl Clone for ValidationEntry
Source§fn clone(&self) -> ValidationEntry
fn clone(&self) -> ValidationEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ValidationEntry
impl RefUnwindSafe for ValidationEntry
impl Send for ValidationEntry
impl Sync for ValidationEntry
impl Unpin for ValidationEntry
impl UnsafeUnpin for ValidationEntry
impl UnwindSafe for ValidationEntry
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