pub struct FileLinesBuilder<P: AsRef<Path>> { /* private fields */ }
Expand description
Builder for lines read from a file
Implementations§
Source§impl<P: AsRef<Path>> FileLinesBuilder<P>
impl<P: AsRef<Path>> FileLinesBuilder<P>
Sourcepub fn replace_variables(self) -> Self
pub fn replace_variables(self) -> Self
if used then environment variables will be captured and replaced by their value
Auto Trait Implementations§
impl<P> Freeze for FileLinesBuilder<P>where
P: Freeze,
impl<P> RefUnwindSafe for FileLinesBuilder<P>where
P: RefUnwindSafe,
impl<P> Send for FileLinesBuilder<P>where
P: Send,
impl<P> Sync for FileLinesBuilder<P>where
P: Sync,
impl<P> Unpin for FileLinesBuilder<P>where
P: Unpin,
impl<P> UnwindSafe for FileLinesBuilder<P>where
P: UnwindSafe,
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