breadx 0.0.2

Implementation of the X Window System Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
// MIT/Apache2 License

use alloc::string::String;

/// Information needed to authorize a user to use an X11 connection.
#[derive(Default, Debug)]
pub struct AuthInfo {
    pub name: String,
    pub data: String,
}