Recent changes

Track the most recent changes to the wiki on this page.

Recent changes options Show last 50 | 100 | 250 | 500 changes in last 1 | 3 | 7 | 14 | 30 days
Hide registered users | Hide anonymous users | Hide my edits | Show bots | Show minor edits
Show new changes starting from 19:01, 17 June 2024
   
List of abbreviations:
N
This edit created a new page (also see list of new pages)
m
This is a minor edit
b
This edit was performed by a bot
(±123)
The page size changed by this number of bytes

17 June 2024

     14:17  ChangeLog/9.1 diffhist +333 Farosas talk contribs
     08:43  (Move log) [Manos‎ (2×)]
     
08:43 Manos talk contribs moved page Features/Rust/Meson to RustInQemu/Meson(Rust is not a QEMU feature just like Python or C isn't)
     
08:42 Manos talk contribs moved page Features/Rust to RustInQemu over redirect ‎(Rust is not a QEMU feature just like Python or C isn't)
     08:42 Deletion log Manos talk contribs deleted redirect RustInQemu by overwriting ‎(Deleted to make way for move from "Features/Rust")

14 June 2024

N    19:30  Features/Rust/Error diffhist +2,764 Paolo Bonzini talk contribs (Created page with "<pre> use crate::bindings; use crate::bindings::error_setg_internal; use std::fmt; use std::fmt::Display; use std::ptr; #[derive(Debug, Default)] pub struct Error { msg: Option<String>, cause: Option<Box<dyn std::error::Error>>, location: Option<(String, u32)>, } impl std::error::Error for Error { fn source(&self) -> Option<&(dyn std::error::Error + 'static)> { self.cause.as_deref() } fn description(&self) -> &str { self.msg.as_...")
     19:28  Features/Rust diffhist −8 Paolo Bonzini talk contribs (→‎Places to start from for idiomatic bindings)