pub enum AlignSetting {
One(String),
Split {
header: Option<String>,
footer: Option<String>,
both: Option<String>,
},
}Variants§
Trait Implementations§
Source§impl Debug for AlignSetting
impl Debug for AlignSetting
Source§impl Default for AlignSetting
impl Default for AlignSetting
Source§impl<'de> Deserialize<'de> for AlignSetting
impl<'de> Deserialize<'de> for AlignSetting
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
Auto Trait Implementations§
impl Freeze for AlignSetting
impl RefUnwindSafe for AlignSetting
impl Send for AlignSetting
impl Sync for AlignSetting
impl Unpin for AlignSetting
impl UnwindSafe for AlignSetting
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