INNER CODE UNIT · Rust
take
fishfolk/bones · framework_crates/bones_asset/src/lib.rs:205
pub fn take(&mut self) -> Maybe<T> {
std::mem::replace(self, Maybe::Unset)
}
/// Replaces the actual value in the option by the value given in parameter, returning the old value if present.
#[inline]
pub fn replace(&mut self, value: T) -> Maybe<T> {
std::mem::replace(self, Maybe::Set(value))
}
/// Zips `self` with another `Maybe`.
#[inline]
pub fn zip<U>(self, other: Maybe<U>) -> Maybe<(T, U)> {
self.option().zip(other.option()).into()
}
/// Returns the contained `Set` value, consuming the `self` value, without checking that the value is not `Unset`.
///