pub struct LibraryDocumentSectionPreview {
pub document_id: i64,
pub section_key: String,
pub section_label: String,
pub sort_order: i32,
pub title: String,
pub preview_text: String,
pub content_format: LibraryPreviewContentFormat,
}Fields§
§document_id: i64§section_key: String§section_label: String§sort_order: i32§title: String§preview_text: String§content_format: LibraryPreviewContentFormatTrait Implementations§
Source§impl Clone for LibraryDocumentSectionPreview
impl Clone for LibraryDocumentSectionPreview
Source§fn clone(&self) -> LibraryDocumentSectionPreview
fn clone(&self) -> LibraryDocumentSectionPreview
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 ComposeSchema for LibraryDocumentSectionPreview
impl ComposeSchema for LibraryDocumentSectionPreview
Source§impl<'de> Deserialize<'de> for LibraryDocumentSectionPreview
impl<'de> Deserialize<'de> for LibraryDocumentSectionPreview
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
Auto Trait Implementations§
impl Freeze for LibraryDocumentSectionPreview
impl RefUnwindSafe for LibraryDocumentSectionPreview
impl Send for LibraryDocumentSectionPreview
impl Sync for LibraryDocumentSectionPreview
impl Unpin for LibraryDocumentSectionPreview
impl UnsafeUnpin for LibraryDocumentSectionPreview
impl UnwindSafe for LibraryDocumentSectionPreview
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