Enum webrender::border::BorderClipKind
source · #[repr(C)]pub enum BorderClipKind {
DashCorner = 1,
DashEdge = 2,
Dot = 3,
}
Expand description
The kind of border corner clip.
Variants§
Trait Implementations§
source§impl Clone for BorderClipKind
impl Clone for BorderClipKind
source§fn clone(&self) -> BorderClipKind
fn clone(&self) -> BorderClipKind
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 BorderClipKind
impl Debug for BorderClipKind
source§impl PartialEq for BorderClipKind
impl PartialEq for BorderClipKind
source§fn eq(&self, other: &BorderClipKind) -> bool
fn eq(&self, other: &BorderClipKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for BorderClipKind
impl StructuralPartialEq for BorderClipKind
Auto Trait Implementations§
impl Freeze for BorderClipKind
impl RefUnwindSafe for BorderClipKind
impl Send for BorderClipKind
impl Sync for BorderClipKind
impl Unpin for BorderClipKind
impl UnwindSafe for BorderClipKind
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