pub struct Pipe {
pub colon_token: Colon,
pub name: Ident,
pub argument: Option<((Bracket, Bracket), TokelStream)>,
}Expand description
A pass of a single transformer with the provided argument.
Fields§
§colon_token: ColonThe preceding : token.
name: IdentThe name of the transformer that is to be used within the active context.
argument: Option<((Bracket, Bracket), TokelStream)>The argument that has been passed to the respective transformer.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Pipe
impl RefUnwindSafe for Pipe
impl !Send for Pipe
impl !Sync for Pipe
impl Unpin for Pipe
impl UnsafeUnpin for Pipe
impl UnwindSafe for Pipe
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more