#[non_exhaustive]pub struct UsedConnective {
pub connective: 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.connective: String§paragraph_index: usize§sentence_index_in_paragraph: usizeTrait Implementations§
Source§impl Clone for UsedConnective
impl Clone for UsedConnective
Source§fn clone(&self) -> UsedConnective
fn clone(&self) -> UsedConnective
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 UsedConnective
impl Debug for UsedConnective
Source§impl PartialEq for UsedConnective
impl PartialEq for UsedConnective
Source§fn eq(&self, other: &UsedConnective) -> bool
fn eq(&self, other: &UsedConnective) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UsedConnective
Auto Trait Implementations§
impl Freeze for UsedConnective
impl RefUnwindSafe for UsedConnective
impl Send for UsedConnective
impl Sync for UsedConnective
impl Unpin for UsedConnective
impl UnsafeUnpin for UsedConnective
impl UnwindSafe for UsedConnective
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