[][src]Enum core::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: 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;

Trait Implementations

impl<C: Clone, B: Clone> Clone for ControlFlow<C, B>[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]

impl<C, B> StructuralPartialEq for ControlFlow<C, B>[src]

impl<C, B> Try for ControlFlow<C, B>[src]

type Ok = C

🔬 This is a nightly-only experimental API. (try_trait #42327)

The type of this value when viewed as successful.

type Error = B

🔬 This is a nightly-only experimental API. (try_trait #42327)

The type of this value when viewed as failed.

Auto Trait Implementations

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

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, 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.