LCOV - code coverage report
Current view: top level - src/dwarf/types - string.rs (source / functions) Coverage Total Hit
Test: lief.lcov Lines: 0.0 % 9 0
Test Date: 2024-11-30:00:00:00 Functions: 0.0 % 2 0

            Line data    Source code
       1              : use lief_ffi as ffi;
       2              : 
       3              : use crate::common::FromFFI;
       4              : use std::marker::PhantomData;
       5              : use crate::dwarf::types::DwarfType;
       6              : 
       7              : /// This structure represents a `DW_TAG_string_type`
       8              : pub struct StringTy<'a> {
       9              :     ptr: cxx::UniquePtr<ffi::DWARF_types_StringTy>,
      10              :     _owner: PhantomData<&'a ()>,
      11              : }
      12              : 
      13              : impl FromFFI<ffi::DWARF_types_StringTy> for StringTy<'_> {
      14            0 :     fn from_ffi(ptr: cxx::UniquePtr<ffi::DWARF_types_StringTy>) -> Self {
      15            0 :         Self {
      16            0 :             ptr,
      17            0 :             _owner: PhantomData,
      18            0 :         }
      19            0 :     }
      20              : }
      21              : 
      22              : impl DwarfType for StringTy<'_> {
      23            0 :     fn get_base(&self) -> &ffi::DWARF_Type {
      24            0 :         self.ptr.as_ref().unwrap().as_ref()
      25            0 :     }
      26              : }
        

Generated by: LCOV version 2.1-1