Enum patch_svd::output::ReadAction[][src]

pub enum ReadAction {
    Clear,
    Set,
    Modify,
    ModifyExternal,
}

If set, it specifies the side effect following a read operation.

If not set, the register is not modified.

Variants

Clear

The register is cleared (set to zero) following a read operation.

Set

The register is set (set to ones) following a read operation.

Modify

The register is modified in some way after a read operation.

ModifyExternal

One or more dependent resources other than the current register are immediately affected by a read operation (it is recommended that the register description specifies these dependencies).

Trait Implementations

impl Clone for ReadAction[src]

impl Debug for ReadAction[src]

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

impl Eq for ReadAction[src]

impl PartialEq<ReadAction> for ReadAction[src]

impl StructuralEq for ReadAction[src]

impl StructuralPartialEq for ReadAction[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> 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.