pub struct NoCopyFileSinkBuilder<T> { /* private fields */ }Expand description
Builder for file sink.
Implementations§
Source§impl<T> NoCopyFileSinkBuilder<T>
impl<T> NoCopyFileSinkBuilder<T>
Sourcepub fn new<P: Into<PathBuf>>(filename: P) -> Self
pub fn new<P: Into<PathBuf>>(filename: P) -> Self
Create new FileSinkBuilder.
Mode defaults to Create.
Sourcepub fn build(self, src: NCReadStream<T>) -> Result<NoCopyFileSink<T>>
pub fn build(self, src: NCReadStream<T>) -> Result<NoCopyFileSink<T>>
Auto Trait Implementations§
impl<T> Freeze for NoCopyFileSinkBuilder<T>
impl<T> RefUnwindSafe for NoCopyFileSinkBuilder<T>where
T: RefUnwindSafe,
impl<T> Send for NoCopyFileSinkBuilder<T>where
T: Send,
impl<T> Sync for NoCopyFileSinkBuilder<T>where
T: Sync,
impl<T> Unpin for NoCopyFileSinkBuilder<T>where
T: Unpin,
impl<T> UnsafeUnpin for NoCopyFileSinkBuilder<T>
impl<T> UnwindSafe for NoCopyFileSinkBuilder<T>where
T: 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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more