Skip to main content

tryx_core/
lib.rs

1#![no_std]
2#![feature(try_trait_v2)]
3
4pub use core::ops::{ControlFlow, FromResidual, Try};
5
6/// Marker for residual types that belong to this workspace's outcome family.
7pub trait TryxResidual {}