Enum webrender::renderer::PartialPresentMode
source · enum PartialPresentMode {
Single {
dirty_rect: DeviceRect,
},
}
Expand description
The selected partial present mode for a given frame.
Variants§
Single
The device supports fewer dirty rects than the number of dirty rects that WR produced. In this case, the WR dirty rects are union’ed into a single dirty rect, that is provided to the caller.
Fields
§
dirty_rect: DeviceRect
Trait Implementations§
source§impl Clone for PartialPresentMode
impl Clone for PartialPresentMode
source§fn clone(&self) -> PartialPresentMode
fn clone(&self) -> PartialPresentMode
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 PartialPresentMode
impl Debug for PartialPresentMode
impl Copy for PartialPresentMode
Auto Trait Implementations§
impl Freeze for PartialPresentMode
impl RefUnwindSafe for PartialPresentMode
impl Send for PartialPresentMode
impl Sync for PartialPresentMode
impl Unpin for PartialPresentMode
impl UnwindSafe for PartialPresentMode
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