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: NothingThe third value
fourth: NothingThe fourth value