pub struct InlineAssembly<T> {
pub statements: Vec<String>,
pub position: Position,
pub info: T,
}
Fields§
§statements: Vec<String>
§position: Position
§info: T
Implementations§
Source§impl InlineAssembly<()>
impl InlineAssembly<()>
Trait Implementations§
Source§impl<T: Clone> Clone for InlineAssembly<T>
impl<T: Clone> Clone for InlineAssembly<T>
Source§fn clone(&self) -> InlineAssembly<T>
fn clone(&self) -> InlineAssembly<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T: Debug> Debug for InlineAssembly<T>
impl<T: Debug> Debug for InlineAssembly<T>
Source§impl<T: Ord> Ord for InlineAssembly<T>
impl<T: Ord> Ord for InlineAssembly<T>
Source§fn cmp(&self, other: &InlineAssembly<T>) -> Ordering
fn cmp(&self, other: &InlineAssembly<T>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<T: PartialEq> PartialEq for InlineAssembly<T>
impl<T: PartialEq> PartialEq for InlineAssembly<T>
Source§impl<T: PartialOrd> PartialOrd for InlineAssembly<T>
impl<T: PartialOrd> PartialOrd for InlineAssembly<T>
impl<T: Eq> Eq for InlineAssembly<T>
impl<T> StructuralPartialEq for InlineAssembly<T>
Auto Trait Implementations§
impl<T> Freeze for InlineAssembly<T>where
T: Freeze,
impl<T> RefUnwindSafe for InlineAssembly<T>where
T: RefUnwindSafe,
impl<T> Send for InlineAssembly<T>where
T: Send,
impl<T> Sync for InlineAssembly<T>where
T: Sync,
impl<T> Unpin for InlineAssembly<T>where
T: Unpin,
impl<T> UnwindSafe for InlineAssembly<T>where
T: UnwindSafe,
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