[][src]Struct probe_rs::flashing::FlashVisualizer

pub struct FlashVisualizer<'layout> { /* fields omitted */ }

A structure which can be used to visualize the built contents of a flash.

Implementations

impl<'layout> FlashVisualizer<'layout>[src]

pub fn generate_svg(&self) -> String[src]

Generates an SVG in string form which visualizes the given flash contents.

pub fn write_svg(&self, path: impl AsRef<Path>) -> Result<()>[src]

Generates an SVG which visualizes the given flash contents and writes it into the file at the given path

Auto Trait Implementations

impl<'layout> RefUnwindSafe for FlashVisualizer<'layout>

impl<'layout> Send for FlashVisualizer<'layout>

impl<'layout> Sync for FlashVisualizer<'layout>

impl<'layout> Unpin for FlashVisualizer<'layout>

impl<'layout> UnwindSafe for FlashVisualizer<'layout>

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.