[][src]Struct drogue_boot::Boot

pub struct Boot<'a> { /* fields omitted */ }

Implementations

impl<'a> Boot<'a>[src]

pub fn new(partition: u32) -> Boot<'a>[src]

Create a new bootloader controller.

  • partition - The start address of the primary non-bootloader partition.

pub fn with_logger(&mut self, logger: &'a dyn Logger) -> &mut Self[src]

Configure a logger to use by the bootloader.

pub fn boot(&self) -> ![src]

Perform the bootloader boot sequence.

Auto Trait Implementations

impl<'a> !Send for Boot<'a>

impl<'a> !Sync for Boot<'a>

impl<'a> Unpin for Boot<'a>

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.