Struct webrender::prim_store::line_dec::LineDecorationCacheKey
source · pub struct LineDecorationCacheKey {
pub style: LineStyle,
pub orientation: LineOrientation,
pub wavy_line_thickness: Au,
pub size: LayoutSizeAu,
}
Fields§
§style: LineStyle
§orientation: LineOrientation
§wavy_line_thickness: Au
§size: LayoutSizeAu
Trait Implementations§
source§impl Clone for LineDecorationCacheKey
impl Clone for LineDecorationCacheKey
source§fn clone(&self) -> LineDecorationCacheKey
fn clone(&self) -> LineDecorationCacheKey
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 LineDecorationCacheKey
impl Debug for LineDecorationCacheKey
source§impl Hash for LineDecorationCacheKey
impl Hash for LineDecorationCacheKey
source§impl MallocSizeOf for LineDecorationCacheKey
impl MallocSizeOf for LineDecorationCacheKey
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 LineDecorationCacheKey
impl PartialEq for LineDecorationCacheKey
source§fn eq(&self, other: &LineDecorationCacheKey) -> bool
fn eq(&self, other: &LineDecorationCacheKey) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for LineDecorationCacheKey
impl Serialize for LineDecorationCacheKey
impl Eq for LineDecorationCacheKey
impl StructuralPartialEq for LineDecorationCacheKey
Auto Trait Implementations§
impl Freeze for LineDecorationCacheKey
impl RefUnwindSafe for LineDecorationCacheKey
impl Send for LineDecorationCacheKey
impl Sync for LineDecorationCacheKey
impl Unpin for LineDecorationCacheKey
impl UnwindSafe for LineDecorationCacheKey
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