pub struct DynamicStackSlotData {
pub kind: StackSlotKind,
pub dyn_ty: DynamicType,
}
Expand description
Contents of a dynamic stack slot.
Fields§
§kind: StackSlotKind
The kind of stack slot.
dyn_ty: DynamicType
The type of this slot.
Implementations§
Source§impl DynamicStackSlotData
impl DynamicStackSlotData
Sourcepub fn new(kind: StackSlotKind, dyn_ty: DynamicType) -> Self
pub fn new(kind: StackSlotKind, dyn_ty: DynamicType) -> Self
Create a stack slot with the specified byte size.
Trait Implementations§
Source§impl Clone for DynamicStackSlotData
impl Clone for DynamicStackSlotData
Source§fn clone(&self) -> DynamicStackSlotData
fn clone(&self) -> DynamicStackSlotData
Returns a copy 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 DynamicStackSlotData
impl Debug for DynamicStackSlotData
Source§impl Display for DynamicStackSlotData
impl Display for DynamicStackSlotData
Source§impl Hash for DynamicStackSlotData
impl Hash for DynamicStackSlotData
Source§impl PartialEq for DynamicStackSlotData
impl PartialEq for DynamicStackSlotData
impl Eq for DynamicStackSlotData
impl StructuralPartialEq for DynamicStackSlotData
Auto Trait Implementations§
impl Freeze for DynamicStackSlotData
impl RefUnwindSafe for DynamicStackSlotData
impl Send for DynamicStackSlotData
impl Sync for DynamicStackSlotData
impl Unpin for DynamicStackSlotData
impl UnwindSafe for DynamicStackSlotData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.