pub struct NessaInstruction {
pub instruction: CompiledNessaExpr,
pub debug_info: DebugInfo,
}Fields§
§instruction: CompiledNessaExpr§debug_info: DebugInfoImplementations§
Source§impl NessaInstruction
impl NessaInstruction
pub fn to_string(&self, ctx: &NessaContext) -> String
Source§impl NessaInstruction
impl NessaInstruction
pub fn new(instruction: CompiledNessaExpr, comment: String) -> NessaInstruction
pub fn new_with_type( instruction: CompiledNessaExpr, comment: String, var_type: Type, ) -> NessaInstruction
pub fn set_loc(self, loc: &Location) -> Self
Trait Implementations§
Source§impl Clone for NessaInstruction
impl Clone for NessaInstruction
Source§fn clone(&self) -> NessaInstruction
fn clone(&self) -> NessaInstruction
Returns a duplicate of the value. Read more
1.0.0 · 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 NessaInstruction
impl Debug for NessaInstruction
Source§impl<'de> Deserialize<'de> for NessaInstruction
impl<'de> Deserialize<'de> for NessaInstruction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<CompiledNessaExpr> for NessaInstruction
impl From<CompiledNessaExpr> for NessaInstruction
Source§fn from(obj: CompiledNessaExpr) -> NessaInstruction
fn from(obj: CompiledNessaExpr) -> NessaInstruction
Converts to this type from the input type.
Source§impl PartialEq for NessaInstruction
impl PartialEq for NessaInstruction
Source§impl Serialize for NessaInstruction
impl Serialize for NessaInstruction
impl StructuralPartialEq for NessaInstruction
Auto Trait Implementations§
impl Freeze for NessaInstruction
impl RefUnwindSafe for NessaInstruction
impl Send for NessaInstruction
impl Sync for NessaInstruction
impl Unpin for NessaInstruction
impl UnwindSafe for NessaInstruction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more