pub enum MdxExpressionKind {
Expression,
AttributeExpression,
AttributeValueExpression,
}
Expand description
Expression kind.
Variants§
Expression
Kind of expressions in prose.
> | # {Math.PI}
^^^^^^^^^
|
> | {Math.PI}
^^^^^^^^^
AttributeExpression
Kind of expressions as attributes.
> | <a {...b}>
^^^^^^
AttributeValueExpression
Kind of expressions as attribute values.
> | <a b={c}>
^^^
Trait Implementations§
Source§impl Clone for ExpressionKind
impl Clone for ExpressionKind
Source§fn clone(&self) -> ExpressionKind
fn clone(&self) -> ExpressionKind
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 moreAuto Trait Implementations§
impl Freeze for ExpressionKind
impl RefUnwindSafe for ExpressionKind
impl Send for ExpressionKind
impl Sync for ExpressionKind
impl Unpin for ExpressionKind
impl UnwindSafe for ExpressionKind
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