pub struct Jump {
pub block: Token<Block>,
pub arguments: Vec<Token<Op>>,
}
Expand description
Jump destination parameters.
Fields§
§block: Token<Block>
The block to jump to.
arguments: Vec<Token<Op>>
The argument values corresponding to the block arguments.
Trait Implementations§
source§impl PartialEq<Jump> for Jump
impl PartialEq<Jump> for Jump
impl Eq for Jump
impl StructuralEq for Jump
impl StructuralPartialEq for Jump
Auto Trait Implementations§
impl RefUnwindSafe for Jump
impl Send for Jump
impl Sync for Jump
impl Unpin for Jump
impl UnwindSafe for Jump
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