mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 19:37:51 +03:00
Fix clippy lints with --no-default-features
This commit is contained in:
parent
31a07ad96d
commit
3eea64acf6
2 changed files with 10 additions and 1 deletions
|
@ -2,7 +2,10 @@
|
||||||
|
|
||||||
use std::io::{self, Read, Stderr, Write};
|
use std::io::{self, Read, Stderr, Write};
|
||||||
|
|
||||||
use io_tee::{ReadExt, TeeReader, TeeWriter, WriteExt};
|
use io_tee::{TeeReader, TeeWriter};
|
||||||
|
|
||||||
|
#[cfg(feature = "plugin")]
|
||||||
|
use io_tee::{ReadExt, WriteExt};
|
||||||
|
|
||||||
/// A wrapper around a reader that optionally tees its input to `stderr` for this process.
|
/// A wrapper around a reader that optionally tees its input to `stderr` for this process.
|
||||||
pub enum DebugReader<R: Read> {
|
pub enum DebugReader<R: Read> {
|
||||||
|
@ -11,6 +14,8 @@ pub enum DebugReader<R: Read> {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<R: Read> DebugReader<R> {
|
impl<R: Read> DebugReader<R> {
|
||||||
|
#[cfg(feature = "plugin")]
|
||||||
|
#[cfg_attr(docsrs, doc(cfg(feature = "plugin")))]
|
||||||
pub(crate) fn new(reader: R, debug_enabled: bool) -> Self {
|
pub(crate) fn new(reader: R, debug_enabled: bool) -> Self {
|
||||||
if debug_enabled {
|
if debug_enabled {
|
||||||
DebugReader::On(reader.tee_dbg())
|
DebugReader::On(reader.tee_dbg())
|
||||||
|
@ -36,6 +41,8 @@ pub enum DebugWriter<W: Write> {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<W: Write> DebugWriter<W> {
|
impl<W: Write> DebugWriter<W> {
|
||||||
|
#[cfg(feature = "plugin")]
|
||||||
|
#[cfg_attr(docsrs, doc(cfg(feature = "plugin")))]
|
||||||
pub(crate) fn new(writer: W, debug_enabled: bool) -> Self {
|
pub(crate) fn new(writer: W, debug_enabled: bool) -> Self {
|
||||||
if debug_enabled {
|
if debug_enabled {
|
||||||
DebugWriter::On(writer.tee_dbg())
|
DebugWriter::On(writer.tee_dbg())
|
||||||
|
|
|
@ -18,6 +18,7 @@ pub enum IdentityFileEntry {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl IdentityFileEntry {
|
impl IdentityFileEntry {
|
||||||
|
#[allow(unused_variables)]
|
||||||
pub(crate) fn into_identity(
|
pub(crate) fn into_identity(
|
||||||
self,
|
self,
|
||||||
callbacks: impl Callbacks + 'static,
|
callbacks: impl Callbacks + 'static,
|
||||||
|
@ -33,6 +34,7 @@ impl IdentityFileEntry {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(unused_variables)]
|
||||||
pub(crate) fn to_recipient(
|
pub(crate) fn to_recipient(
|
||||||
&self,
|
&self,
|
||||||
callbacks: impl Callbacks + 'static,
|
callbacks: impl Callbacks + 'static,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue