pub trait UnwrapValue {
    type Value;

    // Required method
    fn unwrap_value(self) -> Self::Value;
}
Expand description

Unwraps value from inner state.

Required Associated Types§

source

type Value

A value type.

Required Methods§

source

fn unwrap_value(self) -> Self::Value

Unwraps value from the type.

Implementations on Foreign Types§

source§

impl<T> UnwrapValue for ControlFlow<T, T>

§

type Value = T

source§

fn unwrap_value(self) -> <ControlFlow<T, T> as UnwrapValue>::Value

Implementors§