Struct x11rb_protocol::xauth::AuthEntry
source · pub(crate) struct AuthEntry {
family: Family,
address: Vec<u8>,
number: Vec<u8>,
name: Vec<u8>,
data: Vec<u8>,
}
Expand description
A single entry of an .Xauthority
file.
Fields§
§family: Family
The protocol family to which the entry applies
address: Vec<u8>
The address of the peer in a family-specific format
number: Vec<u8>
The display number
name: Vec<u8>
The name of the authentication method to use for the X11 server described by the previous fields.
data: Vec<u8>
Extra data for the authentication method.
Trait Implementations§
source§impl PartialEq for AuthEntry
impl PartialEq for AuthEntry
impl Eq for AuthEntry
impl StructuralPartialEq for AuthEntry
Auto Trait Implementations§
impl Freeze for AuthEntry
impl RefUnwindSafe for AuthEntry
impl Send for AuthEntry
impl Sync for AuthEntry
impl Unpin for AuthEntry
impl UnwindSafe for AuthEntry
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more