pub struct Global {
pub name: u32,
pub interface: String,
pub version: u32,
}Expand description
Description of a global.
Fields§
§name: u32The name of the global.
This is an identifier used by the server to reference some specific global.
interface: StringThe interface of the global.
This describes what type of protocol object the global is.
version: u32The advertised version of the global.
This specifies the maximum version of the global that may be bound. This means any lower version of the global may be bound.
Trait Implementations§
impl Eq for Global
impl StructuralPartialEq for Global
Auto Trait Implementations§
impl Freeze for Global
impl RefUnwindSafe for Global
impl Send for Global
impl Sync for Global
impl Unpin for Global
impl UnsafeUnpin for Global
impl UnwindSafe for Global
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