pub enum BText<I = String> {
Cmd {
name: I,
span: Span,
args: Vec<CmdArg<I>>,
},
Embed {
expr: Ast<I>,
span: Span,
},
}Expand description
One block-text element (input_vert_element).
Variants§
Implementations§
Trait Implementations§
impl<I: PartialEq> StructuralPartialEq for BText<I>
Auto Trait Implementations§
impl<I = String> !Send for BText<I>
impl<I = String> !Sync for BText<I>
impl<I> Freeze for BText<I>
impl<I> RefUnwindSafe for BText<I>
impl<I> Unpin for BText<I>
impl<I> UnsafeUnpin for BText<I>
impl<I> UnwindSafe for BText<I>
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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