pub enum AuthorMode {
Split,
NoSplit,
}Expand description
Explicit author layout mode selected by an mdoc An control macro.
Variants§
Split
Render each subsequent author separately.
NoSplit
Keep subsequent authors in a continuous group.
Trait Implementations§
Source§impl Clone for AuthorMode
impl Clone for AuthorMode
Source§fn clone(&self) -> AuthorMode
fn clone(&self) -> AuthorMode
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 AuthorMode
Source§impl Debug for AuthorMode
impl Debug for AuthorMode
Source§impl<'de> Deserialize<'de> for AuthorMode
impl<'de> Deserialize<'de> for AuthorMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for AuthorMode
Source§impl PartialEq for AuthorMode
impl PartialEq for AuthorMode
Source§impl Serialize for AuthorMode
impl Serialize for AuthorMode
impl StructuralPartialEq for AuthorMode
Auto Trait Implementations§
impl Freeze for AuthorMode
impl RefUnwindSafe for AuthorMode
impl Send for AuthorMode
impl Sync for AuthorMode
impl Unpin for AuthorMode
impl UnsafeUnpin for AuthorMode
impl UnwindSafe for AuthorMode
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