Enum taplo::dom::rewrite::ValueNode[][src]

pub enum ValueNode {
    Bool(OldOrNew<BoolNode>),
    String(OldOrNew<StringNode>),
    Integer(OldOrNew<IntegerNode>),
    Float(OldOrNew<FloatNode>),
    Array(OldOrNew<ArrayNode>),
    Date(OldOrNew<DateNode>),
    Table(OldOrNew<TableNode>),
}

Variants

Trait Implementations

impl Clone for ValueNode[src]

impl Debug for ValueNode[src]

impl From<ArrayNode> for ValueNode[src]

impl From<BoolNode> for ValueNode[src]

impl From<DateNode> for ValueNode[src]

impl From<FloatNode> for ValueNode[src]

impl From<IntegerNode> for ValueNode[src]

impl From<OldOrNew<ArrayNode>> for ValueNode[src]

impl From<OldOrNew<BoolNode>> for ValueNode[src]

impl From<OldOrNew<DateNode>> for ValueNode[src]

impl From<OldOrNew<FloatNode>> for ValueNode[src]

impl From<OldOrNew<IntegerNode>> for ValueNode[src]

impl From<OldOrNew<StringNode>> for ValueNode[src]

impl From<OldOrNew<TableNode>> for ValueNode[src]

impl From<StringNode> for ValueNode[src]

impl From<TableNode> for ValueNode[src]

impl From<ValueNode> for RewriteNode[src]

impl From<ValueNode> for Node[src]

Auto Trait Implementations

impl !RefUnwindSafe for ValueNode

impl !Send for ValueNode

impl !Sync for ValueNode

impl Unpin for ValueNode

impl !UnwindSafe for ValueNode

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DynClone for T where
    T: Clone
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.