pub struct VecRegisterData<RB> { /* private fields */ }Expand description
A collection of registers, backed by a vec.
Implementations§
Source§impl<RB: Integral> VecRegisterData<RB>
impl<RB: Integral> VecRegisterData<RB>
Sourcepub fn new(starting_register: Register, registers: Vec<RB>) -> Self
pub fn new(starting_register: Register, registers: Vec<RB>) -> Self
Create a new register collection backed by a vec
- The registers must be sequential according to the dwarf register numbers.
- All registers that are in the collection must have their true value.
Sourcepub fn bytes(&self) -> RegisterDataBytesIterator<'_, RB> ⓘ
pub fn bytes(&self) -> RegisterDataBytesIterator<'_, RB> ⓘ
Get a byte iterator for this collection.
This iterator can be used to store the collection as bytes or to stream over a network. The iterated bytes include the length so that if you use the FromIterator implementation, it consumes only the bytes that are part of the collection. This means you can chain multiple of these iterators after each other.
use arrayvec::ArrayVec;
use stackdump_core::register_data::{ArrayRegisterData, RegisterData};
let regs1 = ArrayRegisterData::<4, u32>::new(stackdump_core::gimli::Arm::R0, ArrayVec::from([1, 2, 3, 4]));
let regs2 = ArrayRegisterData::<4, u32>::new(stackdump_core::gimli::Arm::R0, ArrayVec::from([5, 6, 7, 8]));
let mut intermediate_buffer = Vec::new();
intermediate_buffer.extend(regs1.bytes());
intermediate_buffer.extend(regs2.bytes());
let mut intermediate_iter = intermediate_buffer.iter().copied();
assert_eq!(regs1, ArrayRegisterData::<4, u32>::from_iter(&mut intermediate_iter));
assert_eq!(regs2, ArrayRegisterData::<4, u32>::from_iter(&mut intermediate_iter));Trait Implementations§
Source§impl<RB: Clone> Clone for VecRegisterData<RB>
impl<RB: Clone> Clone for VecRegisterData<RB>
Source§fn clone(&self) -> VecRegisterData<RB>
fn clone(&self) -> VecRegisterData<RB>
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<RB: Debug> Debug for VecRegisterData<RB>
impl<RB: Debug> Debug for VecRegisterData<RB>
Source§impl<RB: Default> Default for VecRegisterData<RB>
impl<RB: Default> Default for VecRegisterData<RB>
Source§fn default() -> VecRegisterData<RB>
fn default() -> VecRegisterData<RB>
Returns the “default value” for a type. Read more
Source§impl<'de, RB> Deserialize<'de> for VecRegisterData<RB>where
RB: Deserialize<'de>,
impl<'de, RB> Deserialize<'de> for VecRegisterData<RB>where
RB: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<RB> FromIterator<u8> for VecRegisterData<RB>
Available on crate feature std only.
impl<RB> FromIterator<u8> for VecRegisterData<RB>
Available on crate feature
std only.Source§impl<RB: PartialEq> PartialEq for VecRegisterData<RB>
impl<RB: PartialEq> PartialEq for VecRegisterData<RB>
Source§impl<RB: Integral> RegisterData<RB> for VecRegisterData<RB>
Available on crate feature std only.
impl<RB: Integral> RegisterData<RB> for VecRegisterData<RB>
Available on crate feature
std only.Source§fn register(&self, register: Register) -> Option<RB>
fn register(&self, register: Register) -> Option<RB>
Try to get the value of the given register.
Returns None if the register is not present in this collection.
Source§impl<RB> Serialize for VecRegisterData<RB>where
RB: Serialize,
impl<RB> Serialize for VecRegisterData<RB>where
RB: Serialize,
impl<RB: Eq> Eq for VecRegisterData<RB>
impl<RB> StructuralPartialEq for VecRegisterData<RB>
Auto Trait Implementations§
impl<RB> Freeze for VecRegisterData<RB>
impl<RB> RefUnwindSafe for VecRegisterData<RB>where
RB: RefUnwindSafe,
impl<RB> Send for VecRegisterData<RB>where
RB: Send,
impl<RB> Sync for VecRegisterData<RB>where
RB: Sync,
impl<RB> Unpin for VecRegisterData<RB>where
RB: Unpin,
impl<RB> UnwindSafe for VecRegisterData<RB>where
RB: UnwindSafe,
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