pub enum ContentItem {
SourceFile {
module_path: PathBuf,
},
SourceModule {
module: Identifier,
},
Include {
include_file_path: PathBuf,
},
Section {
sub_section: ContentSection,
},
}Expand description
An item within a ContentSection.
Variants§
SourceFile
Include a module by file path.
SourceModule
Include a module by module name.
Fields
§
module: IdentifierInclude
Include a file’s content by file path.
Section
Include a sub-section.
Fields
§
sub_section: ContentSectionTrait Implementations§
Source§impl Clone for ContentItem
impl Clone for ContentItem
Source§fn clone(&self) -> ContentItem
fn clone(&self) -> ContentItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ContentItem
impl Debug for ContentItem
Source§impl<'de> Deserialize<'de> for ContentItem
impl<'de> Deserialize<'de> for ContentItem
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ContentSection> for ContentItem
impl From<ContentSection> for ContentItem
Source§fn from(sub_section: ContentSection) -> Self
fn from(sub_section: ContentSection) -> Self
Converts to this type from the input type.
Source§impl From<Identifier> for ContentItem
impl From<Identifier> for ContentItem
Source§fn from(module: Identifier) -> Self
fn from(module: Identifier) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ContentItem
impl RefUnwindSafe for ContentItem
impl Send for ContentItem
impl Sync for ContentItem
impl Unpin for ContentItem
impl UnsafeUnpin for ContentItem
impl UnwindSafe for ContentItem
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