Enum isla_lib::smt::Accessor[][src]

pub enum Accessor {
    Field(Name),
}

For the concurrency models, register accesses must be logged at a subfield level granularity (e.g. for PSTATE in ARM ASL), which is what the Accessor type is for.

Variants

Field(Name)

Implementations

impl Accessor[src]

pub fn to_string(&self, symtab: &Symtab<'_>) -> String[src]

pub fn pretty(
    &self,
    buf: &mut dyn Write,
    symtab: &Symtab<'_>
) -> Result<(), Box<dyn Error>>
[src]

Trait Implementations

impl Clone for Accessor[src]

impl Debug for Accessor[src]

impl<'de> Deserialize<'de> for Accessor[src]

impl Eq for Accessor[src]

impl Hash for Accessor[src]

impl PartialEq<Accessor> for Accessor[src]

impl Serialize for Accessor[src]

impl StructuralEq for Accessor[src]

impl StructuralPartialEq for Accessor[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> Same<T> for T

type Output = T

Should always be Self

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.