chara_card 0.2.0

A library to deal with character card formats and `.charx` in Rust.
Documentation
1
2
3
4
5
use std::borrow::Cow;

pub trait Resolve<T> {
    fn resolve(&'_ self, value: T) -> Cow<'_, str>;
}