pub struct FlattenedTest {
pub name: String,
pub input: Vec<u8>,
pub output: String,
pub languages: Vec<Box<str>>,
pub error: bool,
pub skip: bool,
pub has_fields: bool,
pub template_delimiters: Option<(&'static str, &'static str)>,
}Fields§
§name: String§input: Vec<u8>§output: String§languages: Vec<Box<str>>§error: bool§skip: bool§has_fields: bool§template_delimiters: Option<(&'static str, &'static str)>Auto Trait Implementations§
impl Freeze for FlattenedTest
impl RefUnwindSafe for FlattenedTest
impl Send for FlattenedTest
impl Sync for FlattenedTest
impl Unpin for FlattenedTest
impl UnwindSafe for FlattenedTest
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