[][src]Struct symbolic::symcache::format::FileRecord

#[repr(C, packed)]pub struct FileRecord {
    pub filename: Seg<u8, u8>,
    pub base_dir: Seg<u8, u8>,
}

The path and name of a file referenced by line records.

Fields

filename: Seg<u8, u8>

Segment offset of the file name.

base_dir: Seg<u8, u8>

Segment offset of the base directory.

Trait Implementations

impl Clone for FileRecord[src]

impl Copy for FileRecord[src]

impl Debug for FileRecord[src]

impl Default for FileRecord[src]

impl Eq for FileRecord[src]

impl Hash for FileRecord[src]

impl Ord for FileRecord[src]

impl PartialEq<FileRecord> for FileRecord[src]

impl PartialOrd<FileRecord> for FileRecord[src]

impl StructuralEq for FileRecord[src]

impl StructuralPartialEq for FileRecord[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> RuleType for T where
    T: Eq + Ord + Copy + Debug + Hash
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.