Struct webrender::prim_store::backdrop::BackdropRender
source · pub struct BackdropRender {}
Trait Implementations§
source§impl Clone for BackdropRender
impl Clone for BackdropRender
source§fn clone(&self) -> BackdropRender
fn clone(&self) -> BackdropRender
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 BackdropRender
impl Debug for BackdropRender
source§impl From<BackdropRender> for BackdropRenderData
impl From<BackdropRender> for BackdropRenderData
source§fn from(_backdrop: BackdropRender) -> Self
fn from(_backdrop: BackdropRender) -> Self
Converts to this type from the input type.
source§impl Hash for BackdropRender
impl Hash for BackdropRender
source§impl Internable for BackdropRender
impl Internable for BackdropRender
type Key = PrimKey<BackdropRender>
type StoreData = PrimTemplate<BackdropRenderData>
type InternData = ()
const PROFILE_COUNTER: usize = 99usize
source§impl InternablePrimitive for BackdropRender
impl InternablePrimitive for BackdropRender
source§fn into_key(self, info: &LayoutPrimitiveInfo) -> PrimKey<BackdropRender>
fn into_key(self, info: &LayoutPrimitiveInfo) -> PrimKey<BackdropRender>
Build a new key from self with
info
.fn make_instance_kind( _key: PrimKey<BackdropRender>, data_handle: Handle<BackdropRender>, _prim_store: &mut PrimitiveStore, ) -> PrimitiveInstanceKind
source§impl IsVisible for BackdropRender
impl IsVisible for BackdropRender
fn is_visible(&self) -> bool
source§impl MallocSizeOf for BackdropRender
impl MallocSizeOf for BackdropRender
source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
Measure the heap usage of all descendant heap-allocated structures, but
not the space taken up by the value itself.
source§impl PartialEq for BackdropRender
impl PartialEq for BackdropRender
source§fn eq(&self, other: &BackdropRender) -> bool
fn eq(&self, other: &BackdropRender) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for BackdropRender
impl Serialize for BackdropRender
impl Eq for BackdropRender
impl StructuralPartialEq for BackdropRender
Auto Trait Implementations§
impl Freeze for BackdropRender
impl RefUnwindSafe for BackdropRender
impl Send for BackdropRender
impl Sync for BackdropRender
impl Unpin for BackdropRender
impl UnwindSafe for BackdropRender
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