pub trait AsTokenBufMut<'a, T: TokenTree> {
// Required method
fn as_token_buf_mut(&'a mut self) -> &'a mut TokenBuf<T>;
}Expand description
Automatically implemented for types that implement Into<&mut TokenBuf> for &mut Type.
Required Methods§
Sourcefn as_token_buf_mut(&'a mut self) -> &'a mut TokenBuf<T>
fn as_token_buf_mut(&'a mut self) -> &'a mut TokenBuf<T>
Get a mutable reference to this as a TokenBuf.