pub struct StackString {
pub encoding: StringEncoding,
pub frame_offset: i64,
pub function: Address,
pub offset: i64,
pub original_stack_pointer: Address,
pub program_counter: Address,
pub stack_pointer: Address,
pub string: String,
}Expand description
栈字符串(stack strings / tight strings)。
Fields§
§encoding: StringEncoding§frame_offset: i64§function: Address§offset: i64§original_stack_pointer: Address§program_counter: Address§stack_pointer: Address§string: StringTrait Implementations§
Source§impl Clone for StackString
impl Clone for StackString
Source§fn clone(&self) -> StackString
fn clone(&self) -> StackString
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 StackString
impl Debug for StackString
Source§impl<'de> Deserialize<'de> for StackString
impl<'de> Deserialize<'de> for StackString
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 PartialEq for StackString
impl PartialEq for StackString
Source§impl Serialize for StackString
impl Serialize for StackString
impl Eq for StackString
impl StructuralPartialEq for StackString
Auto Trait Implementations§
impl Freeze for StackString
impl RefUnwindSafe for StackString
impl Send for StackString
impl Sync for StackString
impl Unpin for StackString
impl UnwindSafe for StackString
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