Source code

Revision control

Copy as Markdown

Other Tools

use ref_cast::{ref_cast_custom, RefCastCustom};
#[derive(RefCastCustom)]
#[repr(transparent)]
pub struct Thing(String);
impl Thing {
#[ref_cast_custom]
pub fn ref_cast<'a>(s: &String) -> &'a Self;
}
fn main() {}