#[repr(C)]pub struct BuiltDisplayListDescriptor {
gecko_display_list_type: GeckoDisplayListType,
builder_start_time: u64,
builder_finish_time: u64,
send_start_time: u64,
total_clip_nodes: usize,
total_spatial_nodes: usize,
cache_size: usize,
}
Expand description
Describes the memory layout of a display list.
A display list consists of some number of display list items, followed by a number of display items.
Fields§
§gecko_display_list_type: GeckoDisplayListType
Gecko specific information about the display list.
builder_start_time: u64
The first IPC time stamp: before any work has been done
builder_finish_time: u64
The second IPC time stamp: after serialization
send_start_time: u64
The third IPC time stamp: just before sending
total_clip_nodes: usize
The amount of clipping nodes created while building this display list.
total_spatial_nodes: usize
The amount of spatial nodes created while building this display list.
cache_size: usize
The size of the cache for this display list.
Trait Implementations§
source§impl Clone for BuiltDisplayListDescriptor
impl Clone for BuiltDisplayListDescriptor
source§fn clone(&self) -> BuiltDisplayListDescriptor
fn clone(&self) -> BuiltDisplayListDescriptor
Returns a copy 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 moresource§impl Default for BuiltDisplayListDescriptor
impl Default for BuiltDisplayListDescriptor
source§fn default() -> BuiltDisplayListDescriptor
fn default() -> BuiltDisplayListDescriptor
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for BuiltDisplayListDescriptor
impl<'de> Deserialize<'de> for BuiltDisplayListDescriptor
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for BuiltDisplayListDescriptor
Auto Trait Implementations§
impl Freeze for BuiltDisplayListDescriptor
impl RefUnwindSafe for BuiltDisplayListDescriptor
impl Send for BuiltDisplayListDescriptor
impl Sync for BuiltDisplayListDescriptor
impl Unpin for BuiltDisplayListDescriptor
impl UnwindSafe for BuiltDisplayListDescriptor
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