#[non_exhaustive]pub struct RenderedParagraph {
pub text: String,
pub sentences: Vec<RenderedSentence>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.text: StringThe full paragraph text.
sentences: Vec<RenderedSentence>One entry per sentence inside the paragraph.
Trait Implementations§
Source§impl Clone for RenderedParagraph
impl Clone for RenderedParagraph
Source§fn clone(&self) -> RenderedParagraph
fn clone(&self) -> RenderedParagraph
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 RenderedParagraph
impl Debug for RenderedParagraph
Source§impl Default for RenderedParagraph
impl Default for RenderedParagraph
Source§fn default() -> RenderedParagraph
fn default() -> RenderedParagraph
Returns the “default value” for a type. Read more
Source§impl PartialEq for RenderedParagraph
impl PartialEq for RenderedParagraph
Source§fn eq(&self, other: &RenderedParagraph) -> bool
fn eq(&self, other: &RenderedParagraph) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RenderedParagraph
Auto Trait Implementations§
impl Freeze for RenderedParagraph
impl RefUnwindSafe for RenderedParagraph
impl Send for RenderedParagraph
impl Sync for RenderedParagraph
impl Unpin for RenderedParagraph
impl UnsafeUnpin for RenderedParagraph
impl UnwindSafe for RenderedParagraph
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