pub struct ComposedFile {
pub path: PathBuf,
pub content: String,
pub source: FileSource,
pub merge_strategy: FileMergingStrategy,
pub is_template: bool,
}Fields§
§path: PathBuf§content: String§source: FileSource§merge_strategy: FileMergingStrategy§is_template: boolTrait Implementations§
Source§impl Clone for ComposedFile
impl Clone for ComposedFile
Source§fn clone(&self) -> ComposedFile
fn clone(&self) -> ComposedFile
Returns a duplicate 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 ComposedFile
impl RefUnwindSafe for ComposedFile
impl Send for ComposedFile
impl Sync for ComposedFile
impl Unpin for ComposedFile
impl UnwindSafe for ComposedFile
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