xcb作成のウィンドウでカイロサーフェスを使用しようとしています。私はCの例だけでなく、Rust XCBとCairoバインディングを持っています。私はほとんど終わりましたが、このエラーは私にとって謎のままです。rust-xcbから `roots`を呼び出すときに「十分に長生きしない」というエラーが発生する
マイコード:
let visual = find_visual(&conn, screen.root_visual()).unwrap();
そして、このようなエラー得る:
src/main.rs:56:19: 56:24 error: `setup` does not live long enough
src/main.rs:56 for screen in setup.roots() {
^~~~~
src/main.rs:54:97: 68:2 note: reference must be valid for the lifetime 'a as defined on the block at 54:96...
src/main.rs:54 fn find_visual<'a>(conn: &'a xcb::Connection, visual: xcb_visualid_t) -> Option<Visualtype<'a>> {
src/main.rs:55 let setup: Setup<'a> = conn.get_setup();
src/main.rs:56 for screen in setup.roots() {
src/main.rs:57 let d_iter: DepthIterator = screen.allowed_depths();
src/main.rs:58 for depth in d_iter {
src/main.rs:59 for vis in depth.visuals() {
...
src/main.rs:55:45: 68:2 note: ...but borrowed value is only valid for the block suffix following statement 0 at 55:44
src/main.rs:55 let setup: Setup<'a> = conn.get_setup();
src/main.rs:56 for screen in setup.roots() {
src/main.rs:57 let d_iter: DepthIterator = screen.allowed_depths();
src/main.rs:58 for depth in d_iter {
src/main.rs:59 for vis in depth.visuals() {
src/main.rs:60 if visual == vis.visual_id() {
...
そしてscreen
とdepth
変数に同じエラーを
fn find_visual<'a>(conn: &'a xcb::Connection, visual: xcb_visualid_t) -> Option<Visualtype<'a>> {
let setup: Setup<'a> = conn.get_setup();
for screen in setup.roots() {
let d_iter: DepthIterator = screen.allowed_depths();
for depth in d_iter {
for vis in depth.visuals() {
if visual == vis.visual_id() {
println!("Found visual");
return Some(vis)
}
}
}
}
None
}
私はこれを呼び出します。
「setup
が十分に長生きしていない」理由を説明することはできますか?私が理解しているように、setup
は、機能return
オプションで破壊され、機能制限なく使用することができます。
get_setup()
コード:
pub fn get_setup(&self) -> Setup {
unsafe {
let setup = xcb_get_setup(self.c);
if setup.is_null() {
panic!("NULL setup on connection")
}
mem::transmute(setup)
}
}
rust-xcbのソースを見ると、私は生涯の注釈を見つけることができません。特に、セットアップ構造体には何もありません。 –
@SebastianRedl私は寿命があるのを見てhttp://rtbo.github.io/rust-xcb/src/xcb/xproto.rs.html#1516 – dimcha
ああ、古いAatchのレポを見ていました。 –