Skip to main content

CydFrameEsp

Struct CydFrameEsp 

Source
pub struct CydFrameEsp<'a, D: SpiDevice<u8> = ExclusiveDevice<Spi<'static, Blocking>, Output<'static>, NoDelay>> { /* private fields */ }
Expand description

The ESP implementation of CydFrame.

Frames are returned by CydDisplay::frame_mut. See the portable CydFrame documentation for normal drawing.

Implementations§

Source§

impl<D: SpiDevice<u8>> CydFrameEsp<'_, D>

Source

pub fn write_text(&mut self, text: &str) -> &mut Self

Draw text at the frame rectangle’s top-left using the device default font and foreground color.

For any other font, color, alignment, or baseline, draw with embedded-graphics directly against this frame.

See the portable CydFrame::write_text documentation.

Source§

impl<'a, D: SpiDevice<u8>> CydFrameEsp<'a, D>

Source

pub fn fill(&mut self, color: Rgb565) -> &mut Self

Fill the frame with an explicit color.

See the portable CydFrame::fill documentation.

Source

pub fn width(&self) -> usize

The buffered frame region’s width in pixels.

Source

pub fn height(&self) -> usize

The buffered frame region’s height in pixels.

Source

pub fn raw_pixels_mut(&mut self) -> &mut [u16]

Borrow the buffered frame region’s raw RGB565 pixels in row-major order.

Source

pub fn flush(&mut self) -> Result<(), Error>

Present this frame’s pixels at its rectangle’s top-left (set by CydDisplay::frame_mut).

This inherent method synchronously writes the buffered rectangle over SPI. In generic code, call CydFrame::flush and await its future instead.

Trait Implementations§

Source§

impl<D: SpiDevice<u8>> CydFrame for CydFrameEsp<'_, D>

Source§

type Error = Error

Error returned when presenting the frame.
Source§

fn rectangle(&self) -> Rectangle

This frame’s rectangle (top-left and size) in logical display coordinates. Read more
Source§

fn fill(&mut self, color: Rgb565) -> &mut Self

Fill this frame with an explicit color and return self.
Source§

fn clear(&mut self) -> &mut Self

Clear this frame with the display’s default background color. Read more
Source§

fn write_text(&mut self, text: &str) -> &mut Self

Draw text at the frame rectangle’s top-left using the device default font and foreground color. Returns &mut Self for chaining.
Source§

fn copy_from_565(&mut self, src: &[u16]) -> Result<()>

Bulk-copy a complete frame-sized, row-major RGB565 image into this frame. Read more
Source§

async fn flush(&mut self) -> Result<(), Error>

Present the frame’s pixels in logical display coordinates. Read more
Source§

impl<D: SpiDevice<u8>> Dimensions for CydFrameEsp<'_, D>

Source§

fn bounding_box(&self) -> Rectangle

Returns the bounding box.
Source§

impl<D: SpiDevice<u8>> DrawTarget for CydFrameEsp<'_, D>

Source§

type Color = Rgb565

The pixel color type the targetted display supports.
Source§

type Error = !

Error type to return when a drawing operation fails. Read more
Source§

fn clear(&mut self, color: Self::Color) -> Result<(), Self::Error>

Fill the entire display with a solid color. Read more
Source§

fn draw_iter<I>(&mut self, pixels: I) -> Result<(), Self::Error>
where I: IntoIterator<Item = Pixel<Self::Color>>,

Draw individual pixels to the display without a defined order. Read more
Source§

fn fill_contiguous<I>( &mut self, area: &Rectangle, colors: I, ) -> Result<(), Self::Error>
where I: IntoIterator<Item = Self::Color>,

Fill a given area with an iterator providing a contiguous stream of pixel colors. Read more
Source§

fn fill_solid( &mut self, area: &Rectangle, color: Self::Color, ) -> Result<(), Self::Error>

Fill a given area with a solid color. Read more
Source§

impl<D: SpiDevice<u8>> PixelTarget for CydFrameEsp<'_, D>

Source§

fn put_pixel_565(&mut self, x: usize, y: usize, rgb565: u16)

The frame buffer already stores RGB565, so a decoded image pixel can be written verbatim with no RGB888 round-trip.

Source§

fn width(&self) -> usize

Source§

fn height(&self) -> usize

Source§

fn put_pixel(&mut self, x: usize, y: usize, color: Rgb888)

Auto Trait Implementations§

§

impl<'a, D = ExclusiveDevice<Spi<'static, Blocking>, Output<'static>, NoDelay>> !RefUnwindSafe for CydFrameEsp<'a, D>

§

impl<'a, D = ExclusiveDevice<Spi<'static, Blocking>, Output<'static>, NoDelay>> !UnwindSafe for CydFrameEsp<'a, D>

§

impl<'a, D> Freeze for CydFrameEsp<'a, D>
where &'a mut CydDisplayEsp<D>: Freeze,

§

impl<'a, D> Send for CydFrameEsp<'a, D>
where &'a mut CydDisplayEsp<D>: Send,

§

impl<'a, D> Sync for CydFrameEsp<'a, D>
where &'a mut CydDisplayEsp<D>: Sync,

§

impl<'a, D> Unpin for CydFrameEsp<'a, D>
where &'a mut CydDisplayEsp<D>: Unpin,

§

impl<'a, D> UnsafeUnpin for CydFrameEsp<'a, D>
where &'a mut CydDisplayEsp<D>: UnsafeUnpin,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Az for T

Source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

Source§

fn cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> CheckedAs for T

Source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

Source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
Source§

impl<T> DrawTargetExt for T
where T: DrawTarget,

Source§

fn translated(&mut self, offset: Point) -> Translated<'_, T>

Creates a translated draw target based on this draw target. Read more
Source§

fn cropped(&mut self, area: &Rectangle) -> Cropped<'_, T>

Creates a cropped draw target based on this draw target. Read more
Source§

fn clipped(&mut self, area: &Rectangle) -> Clipped<'_, T>

Creates a clipped draw target based on this draw target. Read more
Source§

fn color_converted<C>(&mut self) -> ColorConverted<'_, T, C>
where C: PixelColor + Into<<T as DrawTarget>::Color>,

Creates a color conversion draw target. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> OverflowingAs for T

Source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

Source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> SaturatingAs for T

Source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

Source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> StrictAs for T

Source§

fn strict_as<Dst>(self) -> Dst
where T: StrictCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> StrictCastFrom<Src> for Dst
where Src: StrictCast<Dst>,

Source§

fn strict_cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> UnwrappedAs for T

Source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

Source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> WrappingAs for T

Source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

Source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.