Struct centaurea_ui::Pixels[][src]

pub struct Pixels<S: Style>(_);

Implementations

impl<S: Style> Pixels<S>[src]

pub fn next(self, style: S, s: char) -> Self[src]

pub fn string(self, style: S, s: &str) -> Self[src]

pub fn get_mut(&mut self, index: usize) -> Option<&mut Pixel<S>>[src]

pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut Pixel<S>> + '_[src]

pub fn iter(&self) -> impl Iterator<Item = &Pixel<S>> + '_[src]

Trait Implementations

impl<S: Clone + Style> Clone for Pixels<S>[src]

impl<S: Debug + Style> Debug for Pixels<S>[src]

impl<S: Default + Style> Default for Pixels<S>[src]

impl<S: Style> From<Vec<Pixel<S>, Global>> for Pixels<S>[src]

impl<S: PartialEq + Style> PartialEq<Pixels<S>> for Pixels<S>[src]

impl<S: Style> StructuralPartialEq for Pixels<S>[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for Pixels<S> where
    S: RefUnwindSafe

impl<S> Send for Pixels<S> where
    S: Send

impl<S> Sync for Pixels<S> where
    S: Sync

impl<S> Unpin for Pixels<S> where
    S: Unpin

impl<S> UnwindSafe for Pixels<S> where
    S: UnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.