pub struct Run {
pub accession: String,
/* private fields */
}Expand description
A struct to hold the parsed data from the ENA API and return it to the user
Fields§
§accession: StringImplementations§
Source§impl Run
impl Run
Sourcepub fn clean_single_end(&mut self)
pub fn clean_single_end(&mut self)
Clean single end reads if there are paired end reads too This is if the user does not wish to have the single end reads, and keep only the paired end reads
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Run
impl<'de> Deserialize<'de> for Run
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Run
impl RefUnwindSafe for Run
impl Send for Run
impl Sync for Run
impl Unpin for Run
impl UnwindSafe for Run
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