Struct style::values::generics::basic_shape::GenericPolygon
source · #[repr(C)]pub struct GenericPolygon<LengthPercentage> {
pub fill: FillRule,
pub coordinates: OwnedSlice<PolygonCoord<LengthPercentage>>,
}
Expand description
A generic type for representing the polygon()
function
Fields§
§fill: FillRule
The filling rule for a polygon.
coordinates: OwnedSlice<PolygonCoord<LengthPercentage>>
A collection of (x, y) coordinates to draw the polygon.
Implementations§
source§impl GenericPolygon<LengthPercentage>
impl GenericPolygon<LengthPercentage>
sourcefn parse_function_arguments<'i, 't>(
context: &ParserContext<'_>,
input: &mut Parser<'i, 't>,
shape_type: ShapeType,
) -> Result<Self, ParseError<'i>>
fn parse_function_arguments<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, shape_type: ShapeType, ) -> Result<Self, ParseError<'i>>
Parse the inner arguments of a polygon
function.
Trait Implementations§
source§impl<LengthPercentage: Clone> Clone for GenericPolygon<LengthPercentage>
impl<LengthPercentage: Clone> Clone for GenericPolygon<LengthPercentage>
source§fn clone(&self) -> GenericPolygon<LengthPercentage>
fn clone(&self) -> GenericPolygon<LengthPercentage>
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<L> ComputeSquaredDistance for Polygon<L>where
L: ComputeSquaredDistance,
impl<L> ComputeSquaredDistance for Polygon<L>where
L: ComputeSquaredDistance,
source§fn compute_squared_distance(&self, other: &Self) -> Result<SquaredDistance, ()>
fn compute_squared_distance(&self, other: &Self) -> Result<SquaredDistance, ()>
Computes the squared distance between two animatable values.
source§impl<LengthPercentage: Debug> Debug for GenericPolygon<LengthPercentage>
impl<LengthPercentage: Debug> Debug for GenericPolygon<LengthPercentage>
source§impl<'de, LengthPercentage> Deserialize<'de> for GenericPolygon<LengthPercentage>where
LengthPercentage: Deserialize<'de>,
impl<'de, LengthPercentage> Deserialize<'de> for GenericPolygon<LengthPercentage>where
LengthPercentage: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<LengthPercentage> MallocSizeOf for GenericPolygon<LengthPercentage>where
LengthPercentage: MallocSizeOf,
impl<LengthPercentage> MallocSizeOf for GenericPolygon<LengthPercentage>where
LengthPercentage: MallocSizeOf,
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<LengthPercentage: PartialEq> PartialEq for GenericPolygon<LengthPercentage>
impl<LengthPercentage: PartialEq> PartialEq for GenericPolygon<LengthPercentage>
source§fn eq(&self, other: &GenericPolygon<LengthPercentage>) -> bool
fn eq(&self, other: &GenericPolygon<LengthPercentage>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<LengthPercentage> Serialize for GenericPolygon<LengthPercentage>where
LengthPercentage: Serialize,
impl<LengthPercentage> Serialize for GenericPolygon<LengthPercentage>where
LengthPercentage: Serialize,
source§impl<LengthPercentage> SpecifiedValueInfo for GenericPolygon<LengthPercentage>
impl<LengthPercentage> SpecifiedValueInfo for GenericPolygon<LengthPercentage>
source§const SUPPORTED_TYPES: u8 = 0u8
const SUPPORTED_TYPES: u8 = 0u8
Supported CssTypes by the given value type. Read more
source§impl<LengthPercentage> ToAnimatedValue for GenericPolygon<LengthPercentage>where
LengthPercentage: ToAnimatedValue,
impl<LengthPercentage> ToAnimatedValue for GenericPolygon<LengthPercentage>where
LengthPercentage: ToAnimatedValue,
§type AnimatedValue = GenericPolygon<<LengthPercentage as ToAnimatedValue>::AnimatedValue>
type AnimatedValue = GenericPolygon<<LengthPercentage as ToAnimatedValue>::AnimatedValue>
The type of the animated value.
source§fn from_animated_value(from: Self::AnimatedValue) -> Self
fn from_animated_value(from: Self::AnimatedValue) -> Self
Converts back an animated value into a computed value.
source§fn to_animated_value(self, context: &Context<'_>) -> Self::AnimatedValue
fn to_animated_value(self, context: &Context<'_>) -> Self::AnimatedValue
Converts this value to an animated value.
source§impl<LengthPercentage> ToComputedValue for GenericPolygon<LengthPercentage>where
LengthPercentage: ToComputedValue,
impl<LengthPercentage> ToComputedValue for GenericPolygon<LengthPercentage>where
LengthPercentage: ToComputedValue,
§type ComputedValue = GenericPolygon<<LengthPercentage as ToComputedValue>::ComputedValue>
type ComputedValue = GenericPolygon<<LengthPercentage as ToComputedValue>::ComputedValue>
The computed value type we’re going to be converted to.
source§fn from_computed_value(from: &Self::ComputedValue) -> Self
fn from_computed_value(from: &Self::ComputedValue) -> Self
Convert a computed value to specified value form. Read more
source§fn to_computed_value(&self, context: &Context<'_>) -> Self::ComputedValue
fn to_computed_value(&self, context: &Context<'_>) -> Self::ComputedValue
Convert a specified value to a computed value, using itself and the data
inside the
Context
.source§impl<LengthPercentage> ToCss for GenericPolygon<LengthPercentage>where
LengthPercentage: ToCss,
impl<LengthPercentage> ToCss for GenericPolygon<LengthPercentage>where
LengthPercentage: ToCss,
source§impl<LengthPercentage> ToResolvedValue for GenericPolygon<LengthPercentage>where
LengthPercentage: ToResolvedValue,
impl<LengthPercentage> ToResolvedValue for GenericPolygon<LengthPercentage>where
LengthPercentage: ToResolvedValue,
§type ResolvedValue = GenericPolygon<<LengthPercentage as ToResolvedValue>::ResolvedValue>
type ResolvedValue = GenericPolygon<<LengthPercentage as ToResolvedValue>::ResolvedValue>
The resolved value type we’re going to be converted to.
source§fn from_resolved_value(from: Self::ResolvedValue) -> Self
fn from_resolved_value(from: Self::ResolvedValue) -> Self
Convert a resolved value to resolved value form.
source§fn to_resolved_value(self, context: &Context<'_>) -> Self::ResolvedValue
fn to_resolved_value(self, context: &Context<'_>) -> Self::ResolvedValue
Convert a resolved value to a resolved value.
source§impl<LengthPercentage> ToShmem for GenericPolygon<LengthPercentage>where
LengthPercentage: ToShmem,
impl<LengthPercentage> ToShmem for GenericPolygon<LengthPercentage>where
LengthPercentage: ToShmem,
impl<LengthPercentage> StructuralPartialEq for GenericPolygon<LengthPercentage>
Auto Trait Implementations§
impl<LengthPercentage> Freeze for GenericPolygon<LengthPercentage>
impl<LengthPercentage> RefUnwindSafe for GenericPolygon<LengthPercentage>where
LengthPercentage: RefUnwindSafe,
impl<LengthPercentage> Send for GenericPolygon<LengthPercentage>where
LengthPercentage: Send,
impl<LengthPercentage> Sync for GenericPolygon<LengthPercentage>where
LengthPercentage: Sync,
impl<LengthPercentage> Unpin for GenericPolygon<LengthPercentage>where
LengthPercentage: Unpin,
impl<LengthPercentage> UnwindSafe for GenericPolygon<LengthPercentage>where
LengthPercentage: RefUnwindSafe + UnwindSafe,
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 moresource§impl<T> MaybeBoxed<Box<T>> for T
impl<T> MaybeBoxed<Box<T>> for T
source§fn maybe_boxed(self) -> Box<T>
fn maybe_boxed(self) -> Box<T>
Convert
source§impl<T> MaybeBoxed<T> for T
impl<T> MaybeBoxed<T> for T
source§fn maybe_boxed(self) -> T
fn maybe_boxed(self) -> T
Convert