pub struct File<'a> {
pub file_name: &'a str,
pub contents: &'a str,
}
Expand description
A test input file.
Fields§
§file_name: &'a str
The name (path) of the file.
contents: &'a str
The contents of the file.
pub struct File<'a> {
pub file_name: &'a str,
pub contents: &'a str,
}
A test input file.
file_name: &'a str
The name (path) of the file.
contents: &'a str
The contents of the file.