Skip to main content

sark_core/
lib.rs

1pub mod error;
2pub mod http;
3pub mod utils;
4
5pub fn identity_mut<T>(x: &mut T) -> &mut T {
6    x
7}