#[non_exhaustive]pub struct RenderedSentence {
pub text: String,
pub word_count: usize,
pub opening_connective: Option<String>,
pub paragraph_index: usize,
pub sentence_index_in_paragraph: usize,
}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: String§word_count: usize§opening_connective: Option<String>Connective opening this sentence (if any). Matched against the engine’s known connective set, so abuse-introduced strings won’t false-positive.
paragraph_index: usizeIndex of the paragraph this sentence belongs to.
sentence_index_in_paragraph: usizeIndex of this sentence inside its paragraph.
Trait Implementations§
Source§impl Clone for RenderedSentence
impl Clone for RenderedSentence
Source§fn clone(&self) -> RenderedSentence
fn clone(&self) -> RenderedSentence
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 RenderedSentence
impl Debug for RenderedSentence
Source§impl PartialEq for RenderedSentence
impl PartialEq for RenderedSentence
Source§fn eq(&self, other: &RenderedSentence) -> bool
fn eq(&self, other: &RenderedSentence) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RenderedSentence
Auto Trait Implementations§
impl Freeze for RenderedSentence
impl RefUnwindSafe for RenderedSentence
impl Send for RenderedSentence
impl Sync for RenderedSentence
impl Unpin for RenderedSentence
impl UnsafeUnpin for RenderedSentence
impl UnwindSafe for RenderedSentence
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