pub enum ZoneEvent {
Enter {
spatial: SpatialRef,
},
Capture {
spatial: Spatial,
},
Release {
id: u64,
},
Leave {
id: u64,
},
}Variants§
Trait Implementations§
Source§impl EventParser for ZoneEvent
impl EventParser for ZoneEvent
const ASPECT_ID: u64 = 8_505_905_936_867_072_296u64
fn parse_signal( _client: &Arc<ClientHandle>, signal_id: u64, _data: &[u8], _fds: Vec<OwnedFd>, ) -> Result<Self, ScenegraphError>
fn parse_method( _client: &Arc<ClientHandle>, method_id: u64, _data: &[u8], _fds: Vec<OwnedFd>, response: MethodResponse, ) -> Result<Self, ScenegraphError>
Auto Trait Implementations§
impl Freeze for ZoneEvent
impl !RefUnwindSafe for ZoneEvent
impl Send for ZoneEvent
impl Sync for ZoneEvent
impl Unpin for ZoneEvent
impl !UnwindSafe for ZoneEvent
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