pub struct StackBounds {
pub origin: *mut u8,
pub bound: *mut u8,
}
Expand description
Stack bounds for conservative stack marking.
Fields§
§origin: *mut u8
§bound: *mut u8
Implementations§
Source§impl StackBounds
impl StackBounds
pub fn current_thread_stack_bounds() -> StackBounds
Trait Implementations§
Source§impl Clone for StackBounds
impl Clone for StackBounds
Source§fn clone(&self) -> StackBounds
fn clone(&self) -> StackBounds
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 PartialEq for StackBounds
impl PartialEq for StackBounds
impl Copy for StackBounds
impl Eq for StackBounds
impl StructuralPartialEq for StackBounds
Auto Trait Implementations§
impl Freeze for StackBounds
impl RefUnwindSafe for StackBounds
impl !Send for StackBounds
impl !Sync for StackBounds
impl Unpin for StackBounds
impl UnwindSafe for StackBounds
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