Struct cranelift_isle::sema::TermFlags
source · pub struct TermFlags {
pub pure: bool,
pub multi: bool,
pub partial: bool,
}
Expand description
Flags from a term’s declaration with (decl ...)
.
Fields§
§pure: bool
Whether the term is marked as pure
.
multi: bool
Whether the term is marked as multi
.
partial: bool
Whether the term is marked as partial
.
Trait Implementations§
source§impl PartialEq<TermFlags> for TermFlags
impl PartialEq<TermFlags> for TermFlags
impl Eq for TermFlags
impl StructuralEq for TermFlags
impl StructuralPartialEq for TermFlags
Auto Trait Implementations§
impl RefUnwindSafe for TermFlags
impl Send for TermFlags
impl Sync for TermFlags
impl Unpin for TermFlags
impl UnwindSafe for TermFlags
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