[−][src]Enum sp_std::ops::ControlFlow
pub enum ControlFlow<C, B> {
Continue(C),
Break(B),
}🔬 This is a nightly-only experimental API. (control_flow_enum)
new API
Used to make try_fold closures more like normal loops
Variants
🔬 This is a nightly-only experimental API. (control_flow_enum)
new API
Continue in the loop, using the given value for the next iteration
🔬 This is a nightly-only experimental API. (control_flow_enum)
new API
Exit the loop, yielding the given value
Implementations
impl<C, B> ControlFlow<C, B>[src][−]
pub fn break_value(self) -> Option<B>[src][−]
🔬 This is a nightly-only experimental API. (control_flow_enum)
new API
Converts the ControlFlow into an Option which is Some if the
ControlFlow was Break and None otherwise.
impl<R> ControlFlow<<R as Try>::Ok, R> where
R: Try, [src][−]
R: Try,
pub fn from_try(r: R) -> ControlFlow<<R as Try>::Ok, R>[src][−]
🔬 This is a nightly-only experimental API. (control_flow_enum)
new API
Create a ControlFlow from any type implementing Try.
pub fn into_try(self) -> R[src][−]
🔬 This is a nightly-only experimental API. (control_flow_enum)
new API
Convert a ControlFlow into any type implementing Try;
impl<B> ControlFlow<(), B>[src][−]
pub const CONTINUE: ControlFlow<(), B>[src][−][−]
🔬 This is a nightly-only experimental API. (control_flow_enum)
new API
It's frequently the case that there's no value needed with Continue,
so this provides a way to avoid typing (()), if you prefer it.
Examples
#![feature(control_flow_enum)] use std::ops::ControlFlow; let mut partial_sum = 0; let last_used = (1..10).chain(20..25).try_for_each(|x| { partial_sum += x; if partial_sum > 100 { ControlFlow::Break(x) } else { ControlFlow::CONTINUE } }); assert_eq!(last_used.break_value(), Some(22));
impl<C> ControlFlow<C, ()>[src][−]
pub const BREAK: ControlFlow<C, ()>[src][−][−]
🔬 This is a nightly-only experimental API. (control_flow_enum)
new API
APIs like try_for_each don't need values with Break,
so this provides a way to avoid typing (()), if you prefer it.
Examples
#![feature(control_flow_enum)] use std::ops::ControlFlow; let mut partial_sum = 0; (1..10).chain(20..25).try_for_each(|x| { if partial_sum > 100 { ControlFlow::BREAK } else { partial_sum += x; ControlFlow::CONTINUE } }); assert_eq!(partial_sum, 108);
Trait Implementations
impl<C, B> Clone for ControlFlow<C, B> where
B: Clone,
C: Clone, [src][+]
B: Clone,
C: Clone,
impl<C, B> Copy for ControlFlow<C, B> where
B: Copy,
C: Copy, [src]
B: Copy,
C: Copy,
impl<C, B> Debug for ControlFlow<C, B> where
B: Debug,
C: Debug, [src][+]
B: Debug,
C: Debug,
impl<C, B> PartialEq<ControlFlow<C, B>> for ControlFlow<C, B> where
B: PartialEq<B>,
C: PartialEq<C>, [src][+]
B: PartialEq<B>,
C: PartialEq<C>,
Auto Trait Implementations
impl<C, B> RefUnwindSafe for ControlFlow<C, B> where
B: RefUnwindSafe,
C: RefUnwindSafe,
B: RefUnwindSafe,
C: RefUnwindSafe,
impl<C, B> Send for ControlFlow<C, B> where
B: Send,
C: Send,
B: Send,
C: Send,
impl<C, B> Sync for ControlFlow<C, B> where
B: Sync,
C: Sync,
B: Sync,
C: Sync,
impl<C, B> Unpin for ControlFlow<C, B> where
B: Unpin,
C: Unpin,
B: Unpin,
C: Unpin,
impl<C, B> UnwindSafe for ControlFlow<C, B> where
B: UnwindSafe,
C: UnwindSafe,
B: UnwindSafe,
C: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src][+]
T: ?Sized,
impl<T> From<T> for T[src][+]
impl<T, U> Into<U> for T where
U: From<T>, [src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src][+]
U: TryFrom<T>,