Lines Matching refs:push
145 /// Use [`push`] instead if the punctuated sequence may or may not already
148 /// [`push`]: Punctuated::push
157 "Punctuated::push_value: cannot push value if Punctuated is missing trailing punctuation",
173 "Punctuated::push_punct: cannot push punctuation if Punctuated is empty or already has trailing punctuation",
177 self.inner.push((*last, punctuation));
221 pub fn push(&mut self, value: T)
247 self.push(value);
448 self.push(value);
483 Pair::Punctuated(a, b) => punctuated.inner.push((a, b)),