Enum gimli::write::Range[][src]

pub enum Range {
    BaseAddress {
        address: Address,
    },
    OffsetPair {
        begin: u64,
        end: u64,
    },
    StartEnd {
        begin: Address,
        end: Address,
    },
    StartLength {
        begin: Address,
        length: u64,
    },
}

A single range.

Variants

BaseAddress

DW_RLE_base_address

Show fields

Fields of BaseAddress

address: Address

Base address.

OffsetPair

DW_RLE_offset_pair

Show fields

Fields of OffsetPair

begin: u64

Start of range relative to base address.

end: u64

End of range relative to base address.

StartEnd

DW_RLE_start_end

Show fields

Fields of StartEnd

begin: Address

Start of range.

end: Address

End of range.

StartLength

DW_RLE_start_length

Show fields

Fields of StartLength

begin: Address

Start of range.

length: u64

Length of range.

Trait Implementations

impl Clone for Range[src]

impl Debug for Range[src]

impl Eq for Range[src]

impl Hash for Range[src]

impl PartialEq<Range> for Range[src]

impl StructuralEq for Range[src]

impl StructuralPartialEq for Range[src]

Auto Trait Implementations

impl RefUnwindSafe for Range

impl Send for Range

impl Sync for Range

impl Unpin for Range

impl UnwindSafe for Range

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.