Enum rust_texas::component::Component
source · pub enum Component {
}Expand description
One of the main structs, almost everything you put into a document is a Component
Variants§
Part(Part)
Chapter(Chapter)
Section(Section)
Subsection(Subsection)
Frame(Frame)
Block(Block)
Paragraph(Paragraph)
Line(Line)
Input(Input)
Environment(Environment)
List(List)
TextChunk(TextChunk)
Command(String)
Image(Image)
Table(Table)
Row(Row)
Builtin(Builtin)
Implementations§
Trait Implementations§
source§impl From<Subsection> for Component
impl From<Subsection> for Component
source§fn from(value: Subsection) -> Self
fn from(value: Subsection) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Component
impl RefUnwindSafe for Component
impl Send for Component
impl Sync for Component
impl Unpin for Component
impl UnwindSafe for Component
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