pub enum BackendCommand {
Browser(BrowserCommand),
Chrome(ChromeCommand),
}Expand description
Backend command emitted by the compositor input bridge.
Variants§
Browser(BrowserCommand)
Browser-generic command supported by every backend.
Chrome(ChromeCommand)
Chrome-specific command used when compositor input must preserve Chromium-native semantics.
Trait Implementations§
Source§impl Clone for BackendCommand
impl Clone for BackendCommand
Source§fn clone(&self) -> BackendCommand
fn clone(&self) -> BackendCommand
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BackendCommand
impl RefUnwindSafe for BackendCommand
impl Send for BackendCommand
impl Sync for BackendCommand
impl Unpin for BackendCommand
impl UnsafeUnpin for BackendCommand
impl UnwindSafe for BackendCommand
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