tytanic_utils/
assert.rs

1/// Statically assert that `T` is [`Send`].
2pub fn send<T: Send>() {}
3
4/// Statically assert that `T` is [`Sync`].
5pub fn sync<T: Sync>() {}