pub struct TitleSet<'a> {Show 14 fields
pub up: T<'a>,
pub down: T<'a>,
pub left: T<'a>,
pub right: T<'a>,
pub top_left: T<'a>,
pub top_right: T<'a>,
pub bottom_left: T<'a>,
pub bottom_right: T<'a>,
pub double_corners_right: T<'a>,
pub double_corners_left: T<'a>,
pub vertical: T<'a>,
pub horizontal: T<'a>,
pub misc1: T<'a>,
pub misc2: T<'a>,
}Fields§
§up: T<'a>§down: T<'a>§left: T<'a>§right: T<'a>§top_left: T<'a>§top_right: T<'a>§bottom_left: T<'a>§bottom_right: T<'a>§double_corners_right: T<'a>§double_corners_left: T<'a>§vertical: T<'a>§horizontal: T<'a>§misc1: T<'a>§misc2: T<'a>Auto Trait Implementations§
impl<'a> Freeze for TitleSet<'a>
impl<'a> RefUnwindSafe for TitleSet<'a>
impl<'a> Send for TitleSet<'a>
impl<'a> Sync for TitleSet<'a>
impl<'a> Unpin for TitleSet<'a>
impl<'a> UnwindSafe for TitleSet<'a>
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> 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