pub enum OpenRollingFile {
Opened(File, RollingFileInfo),
AlreadyExists(PathBuf),
}Variants§
Opened(File, RollingFileInfo)
AlreadyExists(PathBuf)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OpenRollingFile
impl RefUnwindSafe for OpenRollingFile
impl Send for OpenRollingFile
impl Sync for OpenRollingFile
impl Unpin for OpenRollingFile
impl UnwindSafe for OpenRollingFile
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