pub enum SpecialIndentType {
FirstLine(i32),
Hanging(i32),
}Variants§
Trait Implementations§
Source§impl Clone for SpecialIndentType
impl Clone for SpecialIndentType
Source§fn clone(&self) -> SpecialIndentType
fn clone(&self) -> SpecialIndentType
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 moreimpl Copy for SpecialIndentType
Source§impl Debug for SpecialIndentType
impl Debug for SpecialIndentType
Source§impl PartialEq for SpecialIndentType
impl PartialEq for SpecialIndentType
Source§fn eq(&self, other: &SpecialIndentType) -> bool
fn eq(&self, other: &SpecialIndentType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SpecialIndentType
impl Serialize for SpecialIndentType
impl StructuralPartialEq for SpecialIndentType
Auto Trait Implementations§
impl Freeze for SpecialIndentType
impl RefUnwindSafe for SpecialIndentType
impl Send for SpecialIndentType
impl Sync for SpecialIndentType
impl Unpin for SpecialIndentType
impl UnsafeUnpin for SpecialIndentType
impl UnwindSafe for SpecialIndentType
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