pub struct BookRow {Show 13 fields
pub stable_id: Option<String>,
pub file_hash: Option<String>,
pub title_norm: String,
pub author_norm: Option<String>,
pub path: String,
pub title: String,
pub author: Option<String>,
pub language: Option<String>,
pub publisher: Option<String>,
pub published_at: Option<String>,
pub word_count: Option<u64>,
pub page_count: Option<u64>,
pub parse_error: Option<String>,
}Fields§
§stable_id: Option<String>§file_hash: Option<String>§title_norm: String§path: String§title: String§language: Option<String>§publisher: Option<String>§published_at: Option<String>§word_count: Option<u64>§page_count: Option<u64>§parse_error: Option<String>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BookRow
impl RefUnwindSafe for BookRow
impl Send for BookRow
impl Sync for BookRow
impl Unpin for BookRow
impl UnsafeUnpin for BookRow
impl UnwindSafe for BookRow
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