[][src]Struct com_logger::Builder

pub struct Builder { /* fields omitted */ }

The builder for a serial port logger.

The builder instance can be created also by builder function.

Methods

impl Builder[src]

pub fn new() -> Self[src]

Create a builder for fine-tuning logger.

pub fn base(self, base: u16) -> Self[src]

Set the base address of a COM port.

pub fn filter(self, filter: LevelFilter) -> Self[src]

Set the level filter.

pub fn setup(self)[src]

Setup a logger based on the configuration.

Auto Trait Implementations

impl Send for Builder

impl Sync for Builder

impl Unpin for Builder

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 = !

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.