[−][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;
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>,