其他分享
首页 > 其他分享> > 【Rust】生存期-trait

【Rust】生存期-trait

作者:互联网

环境

概念

参考:https://doc.rust-lang.org/stable/rust-by-example/scope/lifetime/trait.html

示例

main.rs

#[derive(Debug)]
struct Borrowed<'a> {
    x: &'a i32,
}

impl<'a> Default for Borrowed<'a> {
    fn default() -> Self {
        Self { x: &10 }
    }
}

fn main() {
    let b: Borrowed = Default::default();
    println!("b is {:?}", b);
}

总结

了解了 Rust 中的 trait 的生存期参数的标注。

附录

标签:Borrowed,default,trait,Self,生存期,fn,Rust
来源: https://www.cnblogs.com/jiangbo44/p/15703800.html