pub enum SubTopic {
Title(Box<Title>),
BodyElement(Box<BodyElement>),
}Variants§
Trait Implementations§
Source§impl From<Admonition> for SubTopic
impl From<Admonition> for SubTopic
Source§fn from(inner: Admonition) -> Self
fn from(inner: Admonition) -> Self
Converts to this type from the input type.
Source§impl From<BlockQuote> for SubTopic
impl From<BlockQuote> for SubTopic
Source§fn from(inner: BlockQuote) -> Self
fn from(inner: BlockQuote) -> Self
Converts to this type from the input type.
Source§impl From<BodyElement> for SubTopic
impl From<BodyElement> for SubTopic
Source§fn from(inner: BodyElement) -> Self
fn from(inner: BodyElement) -> Self
Converts to this type from the input type.
Source§impl From<BulletList> for SubTopic
impl From<BulletList> for SubTopic
Source§fn from(inner: BulletList) -> Self
fn from(inner: BulletList) -> Self
Converts to this type from the input type.
Source§impl From<DefinitionList> for SubTopic
impl From<DefinitionList> for SubTopic
Source§fn from(inner: DefinitionList) -> Self
fn from(inner: DefinitionList) -> Self
Converts to this type from the input type.
Source§impl From<DoctestBlock> for SubTopic
impl From<DoctestBlock> for SubTopic
Source§fn from(inner: DoctestBlock) -> Self
fn from(inner: DoctestBlock) -> Self
Converts to this type from the input type.
Source§impl From<EnumeratedList> for SubTopic
impl From<EnumeratedList> for SubTopic
Source§fn from(inner: EnumeratedList) -> Self
fn from(inner: EnumeratedList) -> Self
Converts to this type from the input type.
Source§impl From<LiteralBlock> for SubTopic
impl From<LiteralBlock> for SubTopic
Source§fn from(inner: LiteralBlock) -> Self
fn from(inner: LiteralBlock) -> Self
Converts to this type from the input type.
Source§impl From<OptionList> for SubTopic
impl From<OptionList> for SubTopic
Source§fn from(inner: OptionList) -> Self
fn from(inner: OptionList) -> Self
Converts to this type from the input type.
Source§impl From<SubTopic> for StructuralSubElement
impl From<SubTopic> for StructuralSubElement
Source§impl From<SubTopic> for SubSidebar
impl From<SubTopic> for SubSidebar
Source§impl From<SubstitutionDefinition> for SubTopic
impl From<SubstitutionDefinition> for SubTopic
Source§fn from(inner: SubstitutionDefinition) -> Self
fn from(inner: SubstitutionDefinition) -> Self
Converts to this type from the input type.
Source§impl From<SystemMessage> for SubTopic
impl From<SystemMessage> for SubTopic
Source§fn from(inner: SystemMessage) -> Self
fn from(inner: SystemMessage) -> Self
Converts to this type from the input type.
Source§impl HasChildren<SubTopic> for Admonition
impl HasChildren<SubTopic> for Admonition
Source§impl HasChildren<SubTopic> for Topic
impl HasChildren<SubTopic> for Topic
Source§impl JsonSchema for SubTopic
impl JsonSchema for SubTopic
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreimpl StructuralPartialEq for SubTopic
Auto Trait Implementations§
impl Freeze for SubTopic
impl RefUnwindSafe for SubTopic
impl Send for SubTopic
impl Sync for SubTopic
impl Unpin for SubTopic
impl UnwindSafe for SubTopic
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