[][src]Enum webrender_api::SceneMsg

pub enum SceneMsg {
    UpdateEpoch(PipelineIdEpoch),
    SetPageZoom(ZoomFactor),
    SetRootPipeline(PipelineId),
    RemovePipeline(PipelineId),
    SetDisplayList {
        list_descriptor: BuiltDisplayListDescriptor,
        epoch: Epoch,
        pipeline_id: PipelineId,
        background: Option<ColorF>,
        viewport_size: LayoutSize,
        content_size: LayoutSize,
        preserve_frame_state: bool,
    },
    SetWindowParameters {
        window_size: DeviceIntSize,
        inner_rect: DeviceIntRect,
        device_pixel_ratio: f32,
    },
}

Variants

UpdateEpoch(PipelineIdEpoch)SetPageZoom(ZoomFactor)SetRootPipeline(PipelineId)RemovePipeline(PipelineId)SetDisplayList

Fields of SetDisplayList

list_descriptor: BuiltDisplayListDescriptorepoch: Epochpipeline_id: PipelineIdbackground: Option<ColorF>viewport_size: LayoutSizecontent_size: LayoutSizepreserve_frame_state: bool
SetWindowParameters

Fields of SetWindowParameters

window_size: DeviceIntSizeinner_rect: DeviceIntRectdevice_pixel_ratio: f32

Trait Implementations

impl Clone for SceneMsg[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SceneMsg[src]

impl Serialize for SceneMsg[src]

impl<'de> Deserialize<'de> for SceneMsg[src]

Auto Trait Implementations

impl Send for SceneMsg

impl Sync for SceneMsg

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]