Replace

Type Alias Replace 

Source
pub type Replace<T, U> = Cons<Skip<T>, Insert<U>>;
Expand description

Parse-skip a T and inserts a U: Default in place. This is a zero sized type.

Aliased Type§

pub struct Replace<T, U> {
    pub first: Skip<T>,
    pub second: Insert<U>,
    pub third: Nothing,
    pub fourth: Nothing,
}

Fields§

§first: Skip<T>

The first value

§second: Insert<U>

The second value

§third: Nothing

The third value

§fourth: Nothing

The fourth value