[][src]Struct probe_rs::config::FlashRegion

pub struct FlashRegion {
    pub range: Range<u32>,
    pub is_boot_memory: bool,
}

Represents a region in flash.

Fields

range: Range<u32>is_boot_memory: bool

Implementations

impl FlashRegion[src]

pub fn flash_info(&self) -> FlashInfo[src]

Returns the necessary information about the flash.

Trait Implementations

impl Clone for FlashRegion[src]

impl Debug for FlashRegion[src]

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

impl Eq for FlashRegion[src]

impl Hash for FlashRegion[src]

impl PartialEq<FlashRegion> for FlashRegion[src]

impl Serialize for FlashRegion[src]

impl StructuralEq for FlashRegion[src]

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