pub struct FunctionCfg {
pub blocks: Vec<BasicBlock>,
pub addr_to_block: BTreeMap<u32, usize>,
pub max_depth: usize,
pub stack_consistent: bool,
}Fields§
§blocks: Vec<BasicBlock>§addr_to_block: BTreeMap<u32, usize>§max_depth: usize§stack_consistent: boolTrait Implementations§
Source§impl Clone for FunctionCfg
impl Clone for FunctionCfg
Source§fn clone(&self) -> FunctionCfg
fn clone(&self) -> FunctionCfg
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 FunctionCfg
impl RefUnwindSafe for FunctionCfg
impl Send for FunctionCfg
impl Sync for FunctionCfg
impl Unpin for FunctionCfg
impl UnwindSafe for FunctionCfg
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