Enum zng_view_api::display_list::DisplayItem

source ·
pub enum DisplayItem {
Show 23 variants Reuse { frame_id: FrameId, seg_id: SegmentId, start: usize, end: usize, }, PushReferenceFrame { id: ReferenceFrameId, transform: FrameValue<PxTransform>, transform_style: TransformStyle, is_2d_scale_translation: bool, }, PopReferenceFrame, PushStackingContext { transform_style: TransformStyle, blend_mode: MixBlendMode, filters: Box<[FilterOp]>, }, PopStackingContext, PushClipRect { clip_rect: PxRect, clip_out: bool, }, PushClipRoundedRect { clip_rect: PxRect, corners: PxCornerRadius, clip_out: bool, }, PopClip, PushMask { image_id: ImageTextureId, rect: PxRect, }, PopMask, Border { bounds: PxRect, widths: PxSideOffsets, sides: [BorderSide; 4], radius: PxCornerRadius, }, NinePatchBorder { bounds: PxRect, source: NinePatchSource, widths: PxSideOffsets, fill: bool, repeat_horizontal: RepeatMode, repeat_vertical: RepeatMode, }, Text { clip_rect: PxRect, font_id: FontId, glyphs: Box<[GlyphInstance]>, color: FrameValue<Rgba>, options: GlyphOptions, }, Image { clip_rect: PxRect, image_id: ImageTextureId, image_size: PxSize, rendering: ImageRendering, alpha_type: AlphaType, tile_size: PxSize, tile_spacing: PxSize, }, Color { clip_rect: PxRect, color: FrameValue<Rgba>, }, BackdropFilter { clip_rect: PxRect, filters: Box<[FilterOp]>, }, LinearGradient { clip_rect: PxRect, start_point: Point2D<f32, Px>, end_point: Point2D<f32, Px>, extend_mode: ExtendMode, stops: Box<[GradientStop]>, tile_origin: PxPoint, tile_size: PxSize, tile_spacing: PxSize, }, RadialGradient { clip_rect: PxRect, center: Point2D<f32, Px>, radius: Size2D<f32, Px>, start_offset: f32, end_offset: f32, extend_mode: ExtendMode, stops: Box<[GradientStop]>, tile_origin: PxPoint, tile_size: PxSize, tile_spacing: PxSize, }, ConicGradient { clip_rect: PxRect, center: Point2D<f32, Px>, angle: AngleRadian, start_offset: f32, end_offset: f32, extend_mode: ExtendMode, stops: Box<[GradientStop]>, tile_origin: PxPoint, tile_size: PxSize, tile_spacing: PxSize, }, Line { clip_rect: PxRect, color: Rgba, style: LineStyle, orientation: LineOrientation, }, PushExtension { extension_id: ApiExtensionId, payload: ApiExtensionPayload, }, PopExtension { extension_id: ApiExtensionId, }, SetBackfaceVisibility { visible: bool, },
}
Expand description

Display item in a DisplayList.

Variants§

§

Reuse

Fields

§frame_id: FrameId
§seg_id: SegmentId
§start: usize
§end: usize
§

PushReferenceFrame

Fields

§transform_style: TransformStyle
§is_2d_scale_translation: bool
§

PopReferenceFrame

§

PushStackingContext

Fields

§transform_style: TransformStyle
§blend_mode: MixBlendMode
§filters: Box<[FilterOp]>
§

PopStackingContext

§

PushClipRect

Fields

§clip_rect: PxRect
§clip_out: bool
§

PushClipRoundedRect

Fields

§clip_rect: PxRect
§clip_out: bool
§

PopClip

§

PushMask

Fields

§rect: PxRect
§

PopMask

§

Border

Fields

§bounds: PxRect
§sides: [BorderSide; 4]
§

NinePatchBorder

Fields

§bounds: PxRect
§fill: bool
§repeat_horizontal: RepeatMode
§repeat_vertical: RepeatMode
§

Text

Fields

§clip_rect: PxRect
§font_id: FontId
§glyphs: Box<[GlyphInstance]>
§

Image

Fields

§clip_rect: PxRect
§image_size: PxSize
§rendering: ImageRendering
§alpha_type: AlphaType
§tile_size: PxSize
§tile_spacing: PxSize
§

Color

Fields

§clip_rect: PxRect
§

BackdropFilter

Fields

§clip_rect: PxRect
§filters: Box<[FilterOp]>
§

LinearGradient

Fields

§clip_rect: PxRect
§start_point: Point2D<f32, Px>
§end_point: Point2D<f32, Px>
§extend_mode: ExtendMode
§tile_origin: PxPoint
§tile_size: PxSize
§tile_spacing: PxSize
§

RadialGradient

Fields

§clip_rect: PxRect
§center: Point2D<f32, Px>
§radius: Size2D<f32, Px>
§start_offset: f32
§end_offset: f32
§extend_mode: ExtendMode
§tile_origin: PxPoint
§tile_size: PxSize
§tile_spacing: PxSize
§

ConicGradient

Fields

§clip_rect: PxRect
§center: Point2D<f32, Px>
§start_offset: f32
§end_offset: f32
§extend_mode: ExtendMode
§tile_origin: PxPoint
§tile_size: PxSize
§tile_spacing: PxSize
§

Line

Fields

§clip_rect: PxRect
§color: Rgba
§orientation: LineOrientation
§

PushExtension

Fields

§extension_id: ApiExtensionId
§

PopExtension

Fields

§extension_id: ApiExtensionId
§

SetBackfaceVisibility

Fields

§visible: bool

Implementations§

source§

impl DisplayItem

source

pub fn update_transform(&mut self, t: &FrameValueUpdate<PxTransform>) -> bool

Update the value and returns if a new full frame must be rendered.

source

pub fn update_float(&mut self, t: &FrameValueUpdate<f32>) -> bool

Update the value and returns if a new full frame must be rendered.

source

pub fn update_color(&mut self, t: &FrameValueUpdate<Rgba>) -> bool

Update the value and returns if a new full frame must be rendered.

Trait Implementations§

source§

impl Clone for DisplayItem

source§

fn clone(&self) -> DisplayItem

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DisplayItem

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for DisplayItem

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for DisplayItem

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

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