pub struct EscapeGraph { /* private fields */ }Expand description
A flow graph whose edges indicate “var A can flow into var B”.
If A flows into B and B escapes, then A also escapes.
Implementations§
Source§impl EscapeGraph
impl EscapeGraph
Trait Implementations§
Source§impl Clone for EscapeGraph
impl Clone for EscapeGraph
Source§fn clone(&self) -> EscapeGraph
fn clone(&self) -> EscapeGraph
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 EscapeGraph
impl Debug for EscapeGraph
Source§impl Default for EscapeGraph
impl Default for EscapeGraph
Source§fn default() -> EscapeGraph
fn default() -> EscapeGraph
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EscapeGraph
impl RefUnwindSafe for EscapeGraph
impl Send for EscapeGraph
impl Sync for EscapeGraph
impl Unpin for EscapeGraph
impl UnsafeUnpin for EscapeGraph
impl UnwindSafe for EscapeGraph
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