1 个不稳定版本
0.1.0 | 2022年2月15日 |
---|
#2383 在 Rust 模式
2,115 每月下载量
7KB
155 行
Borrown - 简化无 std 的借用或所有。
借用或所有,灵感来自 Cow。
为 T
提供常见的特质实现。
示例
use borrown::Borrown;
#[derive(Debug, Default, Clone, PartialEq, Eq, PartialOrd, Ord)]
struct Foo {
pub _val: usize,
}
let x = Foo { _val: 0 };
let b = Borrown::Borrowed(&x);
let _: &Foo = b.as_ref();
let _: &mut Foo = b.clone().as_mut();
let _: Borrown<'_, Foo> = Default::default();
let _: usize = *b;
let _: bool = b == Borrown::Borrowed(&x);
let _: bool = b <= Borrown::Borrowed(&x);
let _: Borrown<'_, Foo> = b.clone();
let _: Foo = b.into_owned();
println!("{:?}", Borrown::Borrowed(&x));
impl core::ops::Deref for Foo {
type Target = usize;
fn deref(&self) -> &usize {
&self._val
}
}