pub struct CtfeLoopBound {
pub loop_var: String,
pub bound: i64,
pub is_ascending: bool,
pub confirmed: bool,
}Expand description
CTFE loop analysis (detect and bound loops for termination)
Fields§
§loop_var: String§bound: i64§is_ascending: bool§confirmed: boolTrait Implementations§
Source§impl Clone for CtfeLoopBound
impl Clone for CtfeLoopBound
Source§fn clone(&self) -> CtfeLoopBound
fn clone(&self) -> CtfeLoopBound
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 moreAuto Trait Implementations§
impl Freeze for CtfeLoopBound
impl RefUnwindSafe for CtfeLoopBound
impl Send for CtfeLoopBound
impl Sync for CtfeLoopBound
impl Unpin for CtfeLoopBound
impl UnsafeUnpin for CtfeLoopBound
impl UnwindSafe for CtfeLoopBound
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