pub struct ClientInfo<'a> {
pub id: Id,
pub mask: ClientChangeMask,
pub props: &'a Properties,
}Expand description
Client information that is provided in a ClientEvents::info event.
Fields§
§id: IdThe ID of the client.
mask: ClientChangeMaskWhat changed since the last call.
props: &'a PropertiesThe client’s properties.
Auto Trait Implementations§
impl<'a> Freeze for ClientInfo<'a>
impl<'a> RefUnwindSafe for ClientInfo<'a>
impl<'a> Send for ClientInfo<'a>
impl<'a> Sync for ClientInfo<'a>
impl<'a> Unpin for ClientInfo<'a>
impl<'a> UnwindSafe for ClientInfo<'a>
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