pub struct CornerRadiiBuilder { /* private fields */ }
Expand description
CornerRadii
builder.
Implementations
sourceimpl CornerRadiiBuilder
impl CornerRadiiBuilder
sourcepub const fn new() -> Self
pub const fn new() -> Self
Create a new corner radii builder.
All radii are defaulted to 0px x 0px.
sourcepub const fn all(self, radius: Size) -> Self
pub const fn all(self, radius: Size) -> Self
Set all corner radii to the same value.
Examples
use embedded_graphics::{
geometry::Size,
primitives::{CornerRadii, CornerRadiiBuilder},
};
let corners = CornerRadiiBuilder::new().all(Size::new(10, 20)).build();
assert_eq!(
corners,
CornerRadii {
top_left: Size::new(10, 20),
top_right: Size::new(10, 20),
bottom_right: Size::new(10, 20),
bottom_left: Size::new(10, 20),
}
);
sourcepub const fn top(self, radius: Size) -> Self
pub const fn top(self, radius: Size) -> Self
Set the top left and top right corner radii to the same value.
Examples
use embedded_graphics::{
geometry::Size,
primitives::{CornerRadii, CornerRadiiBuilder},
};
let corners = CornerRadiiBuilder::new().top(Size::new(10, 20)).build();
assert_eq!(
corners,
CornerRadii {
top_left: Size::new(10, 20),
top_right: Size::new(10, 20),
bottom_right: Size::zero(),
bottom_left: Size::zero(),
}
);
sourcepub const fn right(self, radius: Size) -> Self
pub const fn right(self, radius: Size) -> Self
Set the top right and bottom right corner radii to the same value.
Examples
use embedded_graphics::{
geometry::Size,
primitives::{CornerRadii, CornerRadiiBuilder},
};
let corners = CornerRadiiBuilder::new().right(Size::new(10, 20)).build();
assert_eq!(
corners,
CornerRadii {
top_left: Size::zero(),
top_right: Size::new(10, 20),
bottom_right: Size::new(10, 20),
bottom_left: Size::zero(),
}
);
sourcepub const fn bottom(self, radius: Size) -> Self
pub const fn bottom(self, radius: Size) -> Self
Set the bottom left and bottom right corner radii to the same value.
Examples
use embedded_graphics::{
geometry::Size,
primitives::{CornerRadii, CornerRadiiBuilder},
};
let corners = CornerRadiiBuilder::new().bottom(Size::new(10, 20)).build();
assert_eq!(
corners,
CornerRadii {
top_left: Size::zero(),
top_right: Size::zero(),
bottom_right: Size::new(10, 20),
bottom_left: Size::new(10, 20),
}
);
sourcepub const fn left(self, radius: Size) -> Self
pub const fn left(self, radius: Size) -> Self
Set the top left and bottom left corner radii to the same value.
Examples
use embedded_graphics::{
geometry::Size,
primitives::{CornerRadii, CornerRadiiBuilder},
};
let corners = CornerRadiiBuilder::new().left(Size::new(10, 20)).build();
assert_eq!(
corners,
CornerRadii {
top_left: Size::new(10, 20),
top_right: Size::zero(),
bottom_right: Size::zero(),
bottom_left: Size::new(10, 20),
}
);
sourcepub const fn top_left(self, radius: Size) -> Self
pub const fn top_left(self, radius: Size) -> Self
Set the top left corner radius.
Examples
use embedded_graphics::{
geometry::Size,
primitives::{CornerRadii, CornerRadiiBuilder},
};
let corners = CornerRadiiBuilder::new()
.top_left(Size::new(10, 20))
.build();
assert_eq!(
corners,
CornerRadii {
top_left: Size::new(10, 20),
top_right: Size::zero(),
bottom_right: Size::zero(),
bottom_left: Size::zero(),
}
);
sourcepub const fn top_right(self, radius: Size) -> Self
pub const fn top_right(self, radius: Size) -> Self
Set the top right corner radius.
Examples
use embedded_graphics::{
geometry::Size,
primitives::{CornerRadii, CornerRadiiBuilder},
};
let corners = CornerRadiiBuilder::new()
.top_right(Size::new(10, 20))
.build();
assert_eq!(
corners,
CornerRadii {
top_left: Size::zero(),
top_right: Size::new(10, 20),
bottom_right: Size::zero(),
bottom_left: Size::zero(),
}
);
sourcepub const fn bottom_right(self, radius: Size) -> Self
pub const fn bottom_right(self, radius: Size) -> Self
Set the bottom right corner radius.
Examples
use embedded_graphics::{
geometry::Size,
primitives::{CornerRadii, CornerRadiiBuilder},
};
let corners = CornerRadiiBuilder::new()
.bottom_right(Size::new(10, 20))
.build();
assert_eq!(
corners,
CornerRadii {
top_left: Size::zero(),
top_right: Size::zero(),
bottom_right: Size::new(10, 20),
bottom_left: Size::zero(),
}
);
sourcepub const fn bottom_left(self, radius: Size) -> Self
pub const fn bottom_left(self, radius: Size) -> Self
Set the bottom left corner radius.
Examples
use embedded_graphics::{
geometry::Size,
primitives::{CornerRadii, CornerRadiiBuilder},
};
let corners = CornerRadiiBuilder::new()
.bottom_left(Size::new(10, 20))
.build();
assert_eq!(
corners,
CornerRadii {
top_left: Size::zero(),
top_right: Size::zero(),
bottom_right: Size::zero(),
bottom_left: Size::new(10, 20),
}
);
sourcepub const fn build(self) -> CornerRadii
pub const fn build(self) -> CornerRadii
Consume the builder and produce a CornerRadii
configuration.
Trait Implementations
sourceimpl Clone for CornerRadiiBuilder
impl Clone for CornerRadiiBuilder
sourcefn clone(&self) -> CornerRadiiBuilder
fn clone(&self) -> CornerRadiiBuilder
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CornerRadiiBuilder
impl Debug for CornerRadiiBuilder
sourceimpl Default for CornerRadiiBuilder
impl Default for CornerRadiiBuilder
sourcefn default() -> CornerRadiiBuilder
fn default() -> CornerRadiiBuilder
Returns the “default value” for a type. Read more
sourceimpl From<&'_ CornerRadii> for CornerRadiiBuilder
impl From<&'_ CornerRadii> for CornerRadiiBuilder
sourcefn from(corners: &CornerRadii) -> Self
fn from(corners: &CornerRadii) -> Self
Performs the conversion.
sourceimpl Hash for CornerRadiiBuilder
impl Hash for CornerRadiiBuilder
sourceimpl Ord for CornerRadiiBuilder
impl Ord for CornerRadiiBuilder
sourceimpl PartialEq<CornerRadiiBuilder> for CornerRadiiBuilder
impl PartialEq<CornerRadiiBuilder> for CornerRadiiBuilder
sourcefn eq(&self, other: &CornerRadiiBuilder) -> bool
fn eq(&self, other: &CornerRadiiBuilder) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CornerRadiiBuilder) -> bool
fn ne(&self, other: &CornerRadiiBuilder) -> bool
This method tests for !=
.
sourceimpl PartialOrd<CornerRadiiBuilder> for CornerRadiiBuilder
impl PartialOrd<CornerRadiiBuilder> for CornerRadiiBuilder
sourcefn partial_cmp(&self, other: &CornerRadiiBuilder) -> Option<Ordering>
fn partial_cmp(&self, other: &CornerRadiiBuilder) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for CornerRadiiBuilder
impl Eq for CornerRadiiBuilder
impl StructuralEq for CornerRadiiBuilder
impl StructuralPartialEq for CornerRadiiBuilder
Auto Trait Implementations
impl RefUnwindSafe for CornerRadiiBuilder
impl Send for CornerRadiiBuilder
impl Sync for CornerRadiiBuilder
impl Unpin for CornerRadiiBuilder
impl UnwindSafe for CornerRadiiBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> CheckedAs for T
impl<T> CheckedAs for T
sourcepub fn checked_as<Dst>(self) -> Option<Dst> where
T: CheckedCast<Dst>,
pub fn checked_as<Dst>(self) -> Option<Dst> where
T: CheckedCast<Dst>,
Casts the value.
sourceimpl<Src, Dst> CheckedCastFrom<Src> for Dst where
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dst where
Src: CheckedCast<Dst>,
sourcepub fn checked_cast_from(src: Src) -> Option<Dst>
pub fn checked_cast_from(src: Src) -> Option<Dst>
Casts the value.
sourceimpl<T> OverflowingAs for T
impl<T> OverflowingAs for T
sourcepub fn overflowing_as<Dst>(self) -> (Dst, bool) where
T: OverflowingCast<Dst>,
pub fn overflowing_as<Dst>(self) -> (Dst, bool) where
T: OverflowingCast<Dst>,
Casts the value.
sourceimpl<Src, Dst> OverflowingCastFrom<Src> for Dst where
Src: OverflowingCast<Dst>,
impl<Src, Dst> OverflowingCastFrom<Src> for Dst where
Src: OverflowingCast<Dst>,
sourcepub fn overflowing_cast_from(src: Src) -> (Dst, bool)
pub fn overflowing_cast_from(src: Src) -> (Dst, bool)
OverflowingCasts the value.
sourceimpl<T> SaturatingAs for T
impl<T> SaturatingAs for T
sourcepub fn saturating_as<Dst>(self) -> Dst where
T: SaturatingCast<Dst>,
pub fn saturating_as<Dst>(self) -> Dst where
T: SaturatingCast<Dst>,
Casts the value.
sourceimpl<Src, Dst> SaturatingCastFrom<Src> for Dst where
Src: SaturatingCast<Dst>,
impl<Src, Dst> SaturatingCastFrom<Src> for Dst where
Src: SaturatingCast<Dst>,
sourcepub fn saturating_cast_from(src: Src) -> Dst
pub fn saturating_cast_from(src: Src) -> Dst
Casts the value.
sourceimpl<T> UnwrappedAs for T
impl<T> UnwrappedAs for T
sourcepub fn unwrapped_as<Dst>(self) -> Dst where
T: UnwrappedCast<Dst>,
pub fn unwrapped_as<Dst>(self) -> Dst where
T: UnwrappedCast<Dst>,
Casts the value.
sourceimpl<Src, Dst> UnwrappedCastFrom<Src> for Dst where
Src: UnwrappedCast<Dst>,
impl<Src, Dst> UnwrappedCastFrom<Src> for Dst where
Src: UnwrappedCast<Dst>,
sourcepub fn unwrapped_cast_from(src: Src) -> Dst
pub fn unwrapped_cast_from(src: Src) -> Dst
UnwrappedCasts the value.
sourceimpl<T> WrappingAs for T
impl<T> WrappingAs for T
sourcepub fn wrapping_as<Dst>(self) -> Dst where
T: WrappingCast<Dst>,
pub fn wrapping_as<Dst>(self) -> Dst where
T: WrappingCast<Dst>,
Casts the value.
sourceimpl<Src, Dst> WrappingCastFrom<Src> for Dst where
Src: WrappingCast<Dst>,
impl<Src, Dst> WrappingCastFrom<Src> for Dst where
Src: WrappingCast<Dst>,
sourcepub fn wrapping_cast_from(src: Src) -> Dst
pub fn wrapping_cast_from(src: Src) -> Dst
WrappingCasts the value.