pub struct DirectoryListChapterItem {
pub title: String,
pub header: Option<String>,
pub permalink: String,
pub released_on: String,
pub tags: Vec<TagItem>,
}Expand description
A Dynasty Reader’s directory list chapter item
Fields
title: Stringheader: Option<String>permalink: Stringreleased_on: StringTrait Implementations
sourceimpl Clone for DirectoryListChapterItem
impl Clone for DirectoryListChapterItem
sourcefn clone(&self) -> DirectoryListChapterItem
fn clone(&self) -> DirectoryListChapterItem
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for DirectoryListChapterItem
impl Debug for DirectoryListChapterItem
sourceimpl<'de> Deserialize<'de> for DirectoryListChapterItem
impl<'de> Deserialize<'de> for DirectoryListChapterItem
sourcefn 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
sourceimpl From<DirectoryListChapterItem> for ChapterConfig
impl From<DirectoryListChapterItem> for ChapterConfig
sourcefn from(item: DirectoryListChapterItem) -> Self
fn from(item: DirectoryListChapterItem) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<DirectoryListChapterItem> for DirectoryListChapterItem
impl PartialEq<DirectoryListChapterItem> for DirectoryListChapterItem
sourcefn eq(&self, other: &DirectoryListChapterItem) -> bool
fn eq(&self, other: &DirectoryListChapterItem) -> bool
sourceimpl Serialize for DirectoryListChapterItem
impl Serialize for DirectoryListChapterItem
impl Eq for DirectoryListChapterItem
impl StructuralEq for DirectoryListChapterItem
impl StructuralPartialEq for DirectoryListChapterItem
Auto Trait Implementations
impl RefUnwindSafe for DirectoryListChapterItem
impl Send for DirectoryListChapterItem
impl Sync for DirectoryListChapterItem
impl Unpin for DirectoryListChapterItem
impl UnwindSafe for DirectoryListChapterItem
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.