[−][src]Enum core::ops::ControlFlow
🔬 This is a nightly-only experimental API. (control_flow_enum #75744)
new API
Used to make try_fold closures more like normal loops
Variants
🔬 This is a nightly-only experimental API. (control_flow_enum #75744)
new API
Continue in the loop, using the given value for the next iteration
🔬 This is a nightly-only experimental API. (control_flow_enum #75744)
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 #75744)
new API
Converts the ControlFlow into an Option which is Some if the
ControlFlow was Break and None otherwise.
impl<R: Try> ControlFlow<R::Ok, R>[src]
pub fn from_try(r: R) -> Self[src]
🔬 This is a nightly-only experimental API. (control_flow_enum #75744)
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 #75744)
new API
Convert a ControlFlow into any type implementing Try;
impl<B> ControlFlow<(), B>[src]
pub const CONTINUE: Self[src]
🔬 This is a nightly-only experimental API. (control_flow_enum #75744)
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));Run
impl<C> ControlFlow<C, ()>[src]
pub const BREAK: Self[src]
🔬 This is a nightly-only experimental API. (control_flow_enum #75744)
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);Run
Trait Implementations
impl<C: Clone, B: Clone> Clone for ControlFlow<C, B>[src]
fn clone(&self) -> ControlFlow<C, B>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<C: Copy, B: Copy> Copy for ControlFlow<C, B>[src]
impl<C: Debug, B: Debug> Debug for ControlFlow<C, B>[src]
impl<C: PartialEq, B: PartialEq> PartialEq<ControlFlow<C, B>> for ControlFlow<C, B>[src]
fn eq(&self, other: &ControlFlow<C, B>) -> bool[src]
fn ne(&self, other: &ControlFlow<C, B>) -> bool[src]
impl<C, B> StructuralPartialEq for ControlFlow<C, B>[src]
impl<C, B> Try for ControlFlow<C, B>[src]
Auto Trait Implementations
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,
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,
fn borrow_mut(&mut Self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,