Struct webrender::filterdata::SFilterData
source · pub struct SFilterData {
pub r_func: SFilterDataComponent,
pub g_func: SFilterDataComponent,
pub b_func: SFilterDataComponent,
pub a_func: SFilterDataComponent,
}
Fields§
§r_func: SFilterDataComponent
§g_func: SFilterDataComponent
§b_func: SFilterDataComponent
§a_func: SFilterDataComponent
Implementations§
source§impl SFilterData
impl SFilterData
pub fn is_identity(&self) -> bool
pub fn update(&self, request: GpuDataRequest<'_>)
Trait Implementations§
source§impl Clone for SFilterData
impl Clone for SFilterData
source§fn clone(&self) -> SFilterData
fn clone(&self) -> SFilterData
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 SFilterData
impl Debug for SFilterData
source§impl Hash for SFilterData
impl Hash for SFilterData
source§impl MallocSizeOf for SFilterData
impl MallocSizeOf for SFilterData
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 SFilterData
impl PartialEq for SFilterData
source§fn eq(&self, other: &SFilterData) -> bool
fn eq(&self, other: &SFilterData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SFilterData
impl Serialize for SFilterData
impl Eq for SFilterData
impl StructuralPartialEq for SFilterData
Auto Trait Implementations§
impl Freeze for SFilterData
impl RefUnwindSafe for SFilterData
impl Send for SFilterData
impl Sync for SFilterData
impl Unpin for SFilterData
impl UnwindSafe for SFilterData
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