pub struct PreviewFile {
pub filename: String,
pub sheets: Vec<PreviewSheet>,
}Expand description
One file the renderer would produce. Currently always exactly one
(output_file_pattern template splitting is pending). Mirrors the
PreviewFile shape from the sibling implementations.
Fields§
§filename: String§sheets: Vec<PreviewSheet>Trait Implementations§
Source§impl Clone for PreviewFile
impl Clone for PreviewFile
Source§fn clone(&self) -> PreviewFile
fn clone(&self) -> PreviewFile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PreviewFile
impl RefUnwindSafe for PreviewFile
impl Send for PreviewFile
impl Sync for PreviewFile
impl Unpin for PreviewFile
impl UnsafeUnpin for PreviewFile
impl UnwindSafe for PreviewFile
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