Enum adapton::reflect::trace::AllocCase [] [src]

pub enum AllocCase {
    LocFresh,
    LocExists(ChangeFlag),
}

Distinguish fresh allocations from those that reuse an existing location.

Variants

The allocation was created fresh; it was not reused.

The allocation matched the location of a prior allocation. its content may or may not also match. The bool indicates the two cases: true means same content, false means changed content.

Trait Implementations

impl Clone for AllocCase
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for AllocCase
[src]

[src]

Formats the value using the given formatter.