pub struct ParsedTestCase {
pub id: Option<String>,
pub desc: Option<String>,
pub sql: String,
pub before_sql: Vec<String>,
pub no_capture: bool,
pub tasks: Vec<String>,
}Expand description
A parsed test case.
Fields§
§id: Option<String>§desc: Option<String>§sql: String§before_sql: Vec<String>§no_capture: bool§tasks: Vec<String>Trait Implementations§
Source§impl Clone for ParsedTestCase
impl Clone for ParsedTestCase
Source§fn clone(&self) -> ParsedTestCase
fn clone(&self) -> ParsedTestCase
Returns a copy 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 ParsedTestCase
impl RefUnwindSafe for ParsedTestCase
impl Send for ParsedTestCase
impl Sync for ParsedTestCase
impl Unpin for ParsedTestCase
impl UnwindSafe for ParsedTestCase
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