pub struct AsciiSet {
pub font_size: f32,
pub font_space: f32,
pub font_line: f32,
pub images: Vec<Rc<AsciiData>>,
}
Fields§
§font_size: f32
§font_space: f32
§font_line: f32
§images: Vec<Rc<AsciiData>>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AsciiSet
impl RefUnwindSafe for AsciiSet
impl !Send for AsciiSet
impl !Sync for AsciiSet
impl Unpin for AsciiSet
impl UnwindSafe for AsciiSet
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more