pub struct MatrixFunction {
pub name: Function,
pub params: MatrixFunctionParams,
pub close: RightParen,
}Expand description
https://drafts.csswg.org/css-transforms-1/#funcdef-transform-matrix
matrix() = matrix( <number>#{6} )Fields§
§name: Function§params: MatrixFunctionParams§close: RightParenTrait Implementations§
Source§impl Clone for MatrixFunction
impl Clone for MatrixFunction
Source§fn clone(&self) -> MatrixFunction
fn clone(&self) -> MatrixFunction
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 Debug for MatrixFunction
impl Debug for MatrixFunction
Source§impl Hash for MatrixFunction
impl Hash for MatrixFunction
Source§impl NodeWithMetadata<CssMetadata> for MatrixFunction
impl NodeWithMetadata<CssMetadata> for MatrixFunction
Source§fn self_metadata(&self) -> CssMetadata
fn self_metadata(&self) -> CssMetadata
Returns the metadata contributed by this node itself, not including children.
Most nodes don’t contribute metadata, so can simply return
M::default().
Nodes like StyleRule or AtRules should return their own node kind flags here.Source§fn metadata(&self) -> CssMetadata
fn metadata(&self) -> CssMetadata
Returns the complete aggregated metadata for this node (self + children).
Default implementation merges children’s metadata with self_metadata().
Source§impl Ord for MatrixFunction
impl Ord for MatrixFunction
Source§fn cmp(&self, other: &MatrixFunction) -> Ordering
fn cmp(&self, other: &MatrixFunction) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> Parse<'a> for MatrixFunction
impl<'a> Parse<'a> for MatrixFunction
Source§impl PartialEq for MatrixFunction
impl PartialEq for MatrixFunction
Source§impl PartialOrd for MatrixFunction
impl PartialOrd for MatrixFunction
Source§impl<'a> Peek<'a> for MatrixFunction
impl<'a> Peek<'a> for MatrixFunction
Source§impl SemanticEq for MatrixFunction
impl SemanticEq for MatrixFunction
Source§fn semantic_eq(&self, other: &Self) -> bool
fn semantic_eq(&self, other: &Self) -> bool
Returns
true if self and other are semantically equal.Source§impl ToCursors for MatrixFunction
impl ToCursors for MatrixFunction
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for MatrixFunction
impl StructuralPartialEq for MatrixFunction
Auto Trait Implementations§
impl Freeze for MatrixFunction
impl RefUnwindSafe for MatrixFunction
impl Send for MatrixFunction
impl Sync for MatrixFunction
impl Unpin for MatrixFunction
impl UnwindSafe for MatrixFunction
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