Struct webrender::intern::InternerSubReport
source · #[repr(C)]pub struct InternerSubReport {Show 17 fields
pub clip: usize,
pub prim: usize,
pub normal_border: usize,
pub image_border: usize,
pub image: usize,
pub yuv_image: usize,
pub line_decoration: usize,
pub linear_grad: usize,
pub radial_grad: usize,
pub conic_grad: usize,
pub picture: usize,
pub text_run: usize,
pub filter_data: usize,
pub backdrop_capture: usize,
pub backdrop_render: usize,
pub polygon: usize,
pub box_shadow: usize,
}
Expand description
Fields§
§clip: usize
§prim: usize
§normal_border: usize
§image_border: usize
§image: usize
§yuv_image: usize
§line_decoration: usize
§linear_grad: usize
§radial_grad: usize
§conic_grad: usize
§picture: usize
§text_run: usize
§filter_data: usize
§backdrop_capture: usize
§backdrop_render: usize
§polygon: usize
§box_shadow: usize
Trait Implementations§
source§impl AddAssign for InternerSubReport
impl AddAssign for InternerSubReport
source§fn add_assign(&mut self, rhs: InternerSubReport)
fn add_assign(&mut self, rhs: InternerSubReport)
Performs the
+=
operation. Read moresource§impl Clone for InternerSubReport
impl Clone for InternerSubReport
source§fn clone(&self) -> InternerSubReport
fn clone(&self) -> InternerSubReport
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 Debug for InternerSubReport
impl Debug for InternerSubReport
source§impl Default for InternerSubReport
impl Default for InternerSubReport
source§fn default() -> InternerSubReport
fn default() -> InternerSubReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InternerSubReport
impl RefUnwindSafe for InternerSubReport
impl Send for InternerSubReport
impl Sync for InternerSubReport
impl Unpin for InternerSubReport
impl UnwindSafe for InternerSubReport
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
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>
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 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>
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