[][src]Struct probe_rs::flashing::FlashProgress

pub struct FlashProgress { /* fields omitted */ }

A structure to manage the flashing procedure progress reporting.

This struct stores a handler closure which will be called everytime an event happens during the flashing process. Such an event can be start or finish of the flashing procedure or a progress report, as well as some more events.

use probe_rs::flashing::FlashProgress;

// Print events
let progress = FlashProgress::new(|event| println!("Event: {:#?}", event));

Methods

impl FlashProgress[src]

pub fn new(handler: impl Fn(ProgressEvent) + 'static) -> Self[src]

Create a new FlashProgress structure with a given handler to be called on events.

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.