#[repr(C, u8)]pub enum CommandEndPoint<LengthPercentage> {
ToPosition(ShapePosition<LengthPercentage>),
ByCoordinate(CoordinatePair<LengthPercentage>),
}Expand description
Defines the end point of the command, which can be specified in absolute or relative coordinates, determined by their “to” or “by” components respectively. https://drafts.csswg.org/css-shapes/#typedef-shape-command-end-point
Variants§
ToPosition(ShapePosition<LengthPercentage>)
ByCoordinate(CoordinatePair<LengthPercentage>)
Implementations§
Source§impl<LengthPercentage> CommandEndPoint<LengthPercentage>
impl<LengthPercentage> CommandEndPoint<LengthPercentage>
Source§impl CommandEndPoint<LengthPercentage>
impl CommandEndPoint<LengthPercentage>
Sourcepub fn parse<'i, 't>(
context: &ParserContext<'_>,
input: &mut Parser<'i, 't>,
by_to: ByTo,
) -> Result<Self, ParseError<'i>>
pub fn parse<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, by_to: ByTo, ) -> Result<Self, ParseError<'i>>
Parse
Source§impl CommandEndPoint<CSSFloat>
impl CommandEndPoint<CSSFloat>
Sourcepub fn to_abs(self) -> CommandEndPoint<CSSFloat>
pub fn to_abs(self) -> CommandEndPoint<CSSFloat>
Converts
Trait Implementations§
Source§impl<LengthPercentage: AddAssign> AddAssign<CoordinatePair<LengthPercentage>> for CommandEndPoint<LengthPercentage>
impl<LengthPercentage: AddAssign> AddAssign<CoordinatePair<LengthPercentage>> for CommandEndPoint<LengthPercentage>
Source§fn add_assign(&mut self, other: CoordinatePair<LengthPercentage>)
fn add_assign(&mut self, other: CoordinatePair<LengthPercentage>)
Performs the
+= operation. Read moreSource§impl<LengthPercentage> Animate for CommandEndPoint<LengthPercentage>where
LengthPercentage: Animate,
impl<LengthPercentage> Animate for CommandEndPoint<LengthPercentage>where
LengthPercentage: Animate,
Source§impl<LengthPercentage: Clone> Clone for CommandEndPoint<LengthPercentage>
impl<LengthPercentage: Clone> Clone for CommandEndPoint<LengthPercentage>
Source§fn clone(&self) -> CommandEndPoint<LengthPercentage>
fn clone(&self) -> CommandEndPoint<LengthPercentage>
Returns a duplicate 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<LengthPercentage> ComputeSquaredDistance for CommandEndPoint<LengthPercentage>where
LengthPercentage: ComputeSquaredDistance,
impl<LengthPercentage> ComputeSquaredDistance for CommandEndPoint<LengthPercentage>where
LengthPercentage: 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 CommandEndPoint<LengthPercentage>
impl<LengthPercentage: Debug> Debug for CommandEndPoint<LengthPercentage>
Source§impl<'de, LengthPercentage> Deserialize<'de> for CommandEndPoint<LengthPercentage>where
LengthPercentage: Deserialize<'de>,
impl<'de, LengthPercentage> Deserialize<'de> for CommandEndPoint<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 From<&CommandEndPoint<f32>> for CommandEndPoint
impl From<&CommandEndPoint<f32>> for CommandEndPoint
Source§fn from(p: &CommandEndPoint<CSSFloat>) -> Self
fn from(p: &CommandEndPoint<CSSFloat>) -> Self
Converts to this type from the input type.
Source§impl From<CommandEndPoint<f32>> for CoordPair
impl From<CommandEndPoint<f32>> for CoordPair
Source§fn from(p: CommandEndPoint<CSSFloat>) -> Self
fn from(p: CommandEndPoint<CSSFloat>) -> Self
Converts to this type from the input type.
Source§impl From<CoordinatePair<f32>> for CommandEndPoint<CSSFloat>
impl From<CoordinatePair<f32>> for CommandEndPoint<CSSFloat>
Source§impl<LengthPercentage> MallocSizeOf for CommandEndPoint<LengthPercentage>where
LengthPercentage: MallocSizeOf,
impl<LengthPercentage> MallocSizeOf for CommandEndPoint<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 CommandEndPoint<LengthPercentage>
impl<LengthPercentage: PartialEq> PartialEq for CommandEndPoint<LengthPercentage>
Source§fn eq(&self, other: &CommandEndPoint<LengthPercentage>) -> bool
fn eq(&self, other: &CommandEndPoint<LengthPercentage>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<LengthPercentage> Serialize for CommandEndPoint<LengthPercentage>where
LengthPercentage: Serialize,
impl<LengthPercentage> Serialize for CommandEndPoint<LengthPercentage>where
LengthPercentage: Serialize,
Source§impl<LengthPercentage> SpecifiedValueInfo for CommandEndPoint<LengthPercentage>where
LengthPercentage: SpecifiedValueInfo,
impl<LengthPercentage> SpecifiedValueInfo for CommandEndPoint<LengthPercentage>where
LengthPercentage: SpecifiedValueInfo,
Source§const SUPPORTED_TYPES: u8
const SUPPORTED_TYPES: u8
Supported CssTypes by the given value type. Read more
Source§impl<LengthPercentage> ToAnimatedValue for CommandEndPoint<LengthPercentage>where
LengthPercentage: ToAnimatedValue,
impl<LengthPercentage> ToAnimatedValue for CommandEndPoint<LengthPercentage>where
LengthPercentage: ToAnimatedValue,
Source§type AnimatedValue = CommandEndPoint<<LengthPercentage as ToAnimatedValue>::AnimatedValue>
type AnimatedValue = CommandEndPoint<<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> ToAnimatedZero for CommandEndPoint<LengthPercentage>where
LengthPercentage: ToAnimatedZero,
impl<LengthPercentage> ToAnimatedZero for CommandEndPoint<LengthPercentage>where
LengthPercentage: ToAnimatedZero,
Source§fn to_animated_zero(&self) -> Result<Self, ()>
fn to_animated_zero(&self) -> Result<Self, ()>
Returns a value that, when added with an underlying value, will produce the underlying
value. This is used for SMIL animation’s “by-animation” where SMIL first interpolates from
the zero value to the ‘by’ value, and then adds the result to the underlying value. Read more
Source§impl<LengthPercentage> ToComputedValue for CommandEndPoint<LengthPercentage>where
LengthPercentage: ToComputedValue,
impl<LengthPercentage> ToComputedValue for CommandEndPoint<LengthPercentage>where
LengthPercentage: ToComputedValue,
Source§type ComputedValue = CommandEndPoint<<LengthPercentage as ToComputedValue>::ComputedValue>
type ComputedValue = CommandEndPoint<<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> ToCss for CommandEndPoint<LengthPercentage>
impl<LengthPercentage: ToCss> ToCss for CommandEndPoint<LengthPercentage>
Source§fn to_css<W>(&self, dest: &mut CssWriter<'_, W>) -> Resultwhere
W: Write,
fn to_css<W>(&self, dest: &mut CssWriter<'_, W>) -> Resultwhere
W: Write,
TODO(bug 1993308): Should print position keywords as keywords. I.e. like the to_css in specified/position.rs.
Source§fn to_css_string(&self) -> String
fn to_css_string(&self) -> String
Serialize
self in CSS syntax and return a string. Read moreSource§fn to_css_cssstring(&self) -> String
fn to_css_cssstring(&self) -> String
Serialize
self in CSS syntax and return a CssString. Read moreSource§impl<LengthPercentage> ToResolvedValue for CommandEndPoint<LengthPercentage>where
LengthPercentage: ToResolvedValue,
impl<LengthPercentage> ToResolvedValue for CommandEndPoint<LengthPercentage>where
LengthPercentage: ToResolvedValue,
Source§type ResolvedValue = CommandEndPoint<<LengthPercentage as ToResolvedValue>::ResolvedValue>
type ResolvedValue = CommandEndPoint<<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 CommandEndPoint<LengthPercentage>where
LengthPercentage: ToShmem,
impl<LengthPercentage> ToShmem for CommandEndPoint<LengthPercentage>where
LengthPercentage: ToShmem,
impl<LengthPercentage: Copy> Copy for CommandEndPoint<LengthPercentage>
impl<LengthPercentage> StructuralPartialEq for CommandEndPoint<LengthPercentage>
Auto Trait Implementations§
impl<LengthPercentage> Freeze for CommandEndPoint<LengthPercentage>where
LengthPercentage: Freeze,
impl<LengthPercentage> RefUnwindSafe for CommandEndPoint<LengthPercentage>where
LengthPercentage: RefUnwindSafe,
impl<LengthPercentage> Send for CommandEndPoint<LengthPercentage>where
LengthPercentage: Send,
impl<LengthPercentage> Sync for CommandEndPoint<LengthPercentage>where
LengthPercentage: Sync,
impl<LengthPercentage> Unpin for CommandEndPoint<LengthPercentage>where
LengthPercentage: Unpin,
impl<LengthPercentage> UnwindSafe for CommandEndPoint<LengthPercentage>where
LengthPercentage: 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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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