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