pub enum CompositorMsg {
Show 13 variants
ChangeRunningAnimationsState(WebViewId, PipelineId, AnimationState),
CreateOrUpdateWebView(SendableFrameTree),
RemoveWebView(WebViewId),
TouchEventProcessed(WebViewId, TouchEventResult),
CreatePng(Option<Rect<f32, CSSPixel>>, IpcSender<Option<Image>>),
IsReadyToSaveImageReply(bool),
SetThrottled(WebViewId, PipelineId, bool),
NewWebRenderFrameReady(DocumentId, bool),
PipelineExited(WebViewId, PipelineId, IpcSender<()>),
LoadComplete(WebViewId),
WebDriverMouseButtonEvent(WebViewId, MouseButtonAction, MouseButton, f32, f32),
WebDriverMouseMoveEvent(WebViewId, f32, f32),
CrossProcess(CrossProcessCompositorMessage),
}
Expand description
Messages from (or via) the constellation thread to the compositor.
Variants§
ChangeRunningAnimationsState(WebViewId, PipelineId, AnimationState)
Alerts the compositor that the given pipeline has changed whether it is running animations.
CreateOrUpdateWebView(SendableFrameTree)
Create or update a webview, given its frame tree.
RemoveWebView(WebViewId)
Remove a webview.
TouchEventProcessed(WebViewId, TouchEventResult)
Script has handled a touch event, and either prevented or allowed default actions.
CreatePng(Option<Rect<f32, CSSPixel>>, IpcSender<Option<Image>>)
Composite to a PNG file and return the Image over a passed channel.
IsReadyToSaveImageReply(bool)
A reply to the compositor asking if the output image is stable.
SetThrottled(WebViewId, PipelineId, bool)
Set whether to use less resources by stopping animations.
NewWebRenderFrameReady(DocumentId, bool)
WebRender has produced a new frame. This message informs the compositor that
the frame is ready. It contains a bool to indicate if it needs to composite and the
DocumentId
of the new frame.
PipelineExited(WebViewId, PipelineId, IpcSender<()>)
A pipeline was shut down.
LoadComplete(WebViewId)
The load of a page has completed
WebDriverMouseButtonEvent(WebViewId, MouseButtonAction, MouseButton, f32, f32)
WebDriver mouse button event
WebDriverMouseMoveEvent(WebViewId, f32, f32)
WebDriver mouse move event
CrossProcess(CrossProcessCompositorMessage)
Messages forwarded to the compositor by the constellation from other crates. These messages are mainly passed on from the compositor to WebRender.
Trait Implementations§
Source§impl Debug for CompositorMsg
impl Debug for CompositorMsg
Source§impl<'_derivative_strum> From<&'_derivative_strum CompositorMsg> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum CompositorMsg> for &'static str
Source§fn from(x: &'_derivative_strum CompositorMsg) -> &'static str
fn from(x: &'_derivative_strum CompositorMsg) -> &'static str
Source§impl From<CompositorMsg> for &'static str
impl From<CompositorMsg> for &'static str
Source§fn from(x: CompositorMsg) -> &'static str
fn from(x: CompositorMsg) -> &'static str
Auto Trait Implementations§
impl !Freeze for CompositorMsg
impl !RefUnwindSafe for CompositorMsg
impl Send for CompositorMsg
impl !Sync for CompositorMsg
impl Unpin for CompositorMsg
impl UnwindSafe for CompositorMsg
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more