clipy fixes
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
9da1062f82
commit
19c29ab9b2
@ -4,7 +4,7 @@
|
|||||||
///
|
///
|
||||||
/// Will be removed with crate version 2.0.
|
/// Will be removed with crate version 2.0.
|
||||||
#[derive(Clone, Copy, Debug, PartialEq)]
|
#[derive(Clone, Copy, Debug, PartialEq)]
|
||||||
#[deprecated(since = "1.1", note = "use std::ops::ControlFlow")]
|
#[deprecated(since = "1.1.0", note = "use std::ops::ControlFlow")]
|
||||||
pub enum ControlFlow<B, C = ()> {
|
pub enum ControlFlow<B, C = ()> {
|
||||||
Continue(C),
|
Continue(C),
|
||||||
Break(B),
|
Break(B),
|
||||||
@ -12,6 +12,6 @@ pub enum ControlFlow<B, C = ()> {
|
|||||||
|
|
||||||
#[allow(deprecated)]
|
#[allow(deprecated)]
|
||||||
impl<B> ControlFlow<B> {
|
impl<B> ControlFlow<B> {
|
||||||
#[deprecated(since = "1.1", note = "use std::ops::ControlFlow")]
|
#[deprecated(since = "1.1.0", note = "use std::ops::ControlFlow")]
|
||||||
pub const CONTINUE: ControlFlow<B, ()> = ControlFlow::Continue(());
|
pub const CONTINUE: ControlFlow<B, ()> = ControlFlow::Continue(());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user