[][src]Enum std::ops::ControlFlow

pub enum ControlFlow<C, B> {
    Continue(C),
    Break(B),
}
🔬 This is a nightly-only experimental API. (control_flow_enum #75744)

new API

Used to make try_fold closures more like normal loops

Variants

Continue(C)
🔬 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

Break(B)
🔬 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> ControlFlow<<R as Try>::Ok, R> where
    R: Try
[src]

pub fn from_try(r: R) -> ControlFlow<<R as Try>::Ok, R>[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;

Trait Implementations

impl<C, B> Clone for ControlFlow<C, B> where
    B: Clone,
    C: Clone
[src]

impl<C, B> Copy for ControlFlow<C, B> where
    B: Copy,
    C: Copy
[src]

impl<C, B> Debug for ControlFlow<C, B> where
    B: Debug,
    C: Debug
[src]

impl<C, B> PartialEq<ControlFlow<C, B>> for ControlFlow<C, B> where
    B: PartialEq<B>,
    C: PartialEq<C>, 
[src]

Auto Trait Implementations

impl<C, B> RefUnwindSafe for ControlFlow<C, B> where
    B: RefUnwindSafe,
    C: RefUnwindSafe

impl<C, B> Send for ControlFlow<C, B> where
    B: Send,
    C: Send

impl<C, B> Sync for ControlFlow<C, B> where
    B: Sync,
    C: Sync

impl<C, B> Unpin for ControlFlow<C, B> where
    B: Unpin,
    C: Unpin

impl<C, B> UnwindSafe for ControlFlow<C, B> where
    B: UnwindSafe,
    C: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.