INNER CODE UNIT · Rust
expect
fishfolk/bones · framework_crates/bones_asset/src/lib.rs:114
pub fn expect(self, msg: &str) -> T {
self.option().expect(msg)
}
/// Returns the contained `Set` value, consuming the `self` value.
#[inline]
#[track_caller]
pub fn unwrap(self) -> T {
self.option().unwrap()
}
/// Returns the contained `Set` value or a provided default.
#[inline]
pub fn unwrap_or(self, default: T) -> T {
self.option().unwrap_or(default)
}
/// Returns the contained `Set` value or computes it from a closure.