pub struct ExecutionBlock {
pub statements: Vec<ExecutionStmt>,
pub span: Span,
}Fields§
§statements: Vec<ExecutionStmt>§span: SpanTrait Implementations§
Source§impl Clone for ExecutionBlock
impl Clone for ExecutionBlock
Source§fn clone(&self) -> ExecutionBlock
fn clone(&self) -> ExecutionBlock
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExecutionBlock
impl Debug for ExecutionBlock
Source§impl PartialEq for ExecutionBlock
impl PartialEq for ExecutionBlock
Source§fn eq(&self, other: &ExecutionBlock) -> bool
fn eq(&self, other: &ExecutionBlock) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExecutionBlock
Auto Trait Implementations§
impl Freeze for ExecutionBlock
impl RefUnwindSafe for ExecutionBlock
impl Send for ExecutionBlock
impl Sync for ExecutionBlock
impl Unpin for ExecutionBlock
impl UnsafeUnpin for ExecutionBlock
impl UnwindSafe for ExecutionBlock
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