[][src]Struct ssd1309::builder::Builder

pub struct Builder { /* fields omitted */ }

Builder struct. Driver options and interface are set using its methods.

Implementations

impl Builder[src]

pub fn new() -> Builder[src]

Create new builder with a default size of 128 x 64 pixels and no rotation.

impl Builder[src]

pub fn with_size(self, display_size: DisplaySize) -> Self[src]

Set the size of the display. Supported sizes are defined by DisplaySize.

pub fn with_rotation(self, rotation: DisplayRotation) -> Self[src]

Set the rotation of the display to one of four values. Defaults to no rotation.

pub fn connect<DI>(self, interface: DI) -> DisplayMode<RawMode<DI>> where
    DI: WriteOnlyDataCommand
[src]

Finish the builder and use the given interface to communicate with the display.

Trait Implementations

impl Clone for Builder[src]

impl Copy for Builder[src]

impl Default for Builder[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> 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.