pub struct PrintOptions {
pub grid_lines: Option<bool>,
pub headings: Option<bool>,
pub horizontal_centered: Option<bool>,
pub vertical_centered: Option<bool>,
}Expand description
Print options.
Fields§
§grid_lines: Option<bool>§headings: Option<bool>§horizontal_centered: Option<bool>§vertical_centered: Option<bool>Trait Implementations§
Source§impl Clone for PrintOptions
impl Clone for PrintOptions
Source§fn clone(&self) -> PrintOptions
fn clone(&self) -> PrintOptions
Returns a duplicate of the value. Read more
1.0.0 · 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 PrintOptions
impl Debug for PrintOptions
Source§impl<'de> Deserialize<'de> for PrintOptions
impl<'de> Deserialize<'de> for PrintOptions
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
Source§impl PartialEq for PrintOptions
impl PartialEq for PrintOptions
Source§impl Serialize for PrintOptions
impl Serialize for PrintOptions
impl StructuralPartialEq for PrintOptions
Auto Trait Implementations§
impl Freeze for PrintOptions
impl RefUnwindSafe for PrintOptions
impl Send for PrintOptions
impl Sync for PrintOptions
impl Unpin for PrintOptions
impl UnwindSafe for PrintOptions
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