Consider such two use
struct Test{
i:i32
}
impl Test{
fn get_i(&self)->&i32{
&self.i
}
}
fn get_test()->Test{
Test{i:0}
}
fn main(){
let i = &get_test().i; // Ok
let i2 = get_test().get_i(); //error
}
The second use can cause the error that:
temporary value dropped while borrowed
I feel the first use is a bit like the concept in C++ that the reference bound can extend the lifetime of the temporary object in some scenes. I'm not sure whether Rust has a similar behavior (might it be). If it has, what is the context in which the temporary lifetime will be extended?