pub struct TutorialTag {
pub span: Span,
pub text: Text,
}Fields§
§span: Span§text: TextTrait Implementations§
Source§impl Clone for TutorialTag
impl Clone for TutorialTag
Source§fn clone(&self) -> TutorialTag
fn clone(&self) -> TutorialTag
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TutorialTag
impl Debug for TutorialTag
Source§impl From<TutorialTag> for Tag
impl From<TutorialTag> for Tag
Source§fn from(v: TutorialTag) -> Self
fn from(v: TutorialTag) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TutorialTag
impl PartialEq for TutorialTag
Source§impl Spanned for TutorialTag
impl Spanned for TutorialTag
impl StructuralPartialEq for TutorialTag
Auto Trait Implementations§
impl Freeze for TutorialTag
impl RefUnwindSafe for TutorialTag
impl Send for TutorialTag
impl Sync for TutorialTag
impl Unpin for TutorialTag
impl UnsafeUnpin for TutorialTag
impl UnwindSafe for TutorialTag
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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