pub struct ElementIndentationsInches {
pub pagewidth: f64,
pub pageheight: f64,
pub left: f64,
pub right: f64,
pub top: f64,
pub bottom: f64,
pub action: f64,
pub character: f64,
pub dialogue: f64,
pub parenthetical: f64,
}Fields§
§pagewidth: f64§pageheight: f64§left: f64§right: f64§top: f64§bottom: f64§action: f64§character: f64§dialogue: f64§parenthetical: f64Implementations§
Source§impl ElementIndentationsInches
impl ElementIndentationsInches
pub fn us_letter_default() -> Self
pub fn top(self, new_top: f64) -> Self
pub fn bottom(self, new_bottom: f64) -> Self
pub fn left(self, new_left: f64) -> Self
pub fn right(self, new_right: f64) -> Self
pub fn pageheight(self, new_pageheight: f64) -> Self
pub fn pagewidth(self, new_pagewidth: f64) -> Self
pub fn action(self, new_action: f64) -> Self
pub fn character(self, new_character: f64) -> Self
pub fn dialogue(self, new_dialogue: f64) -> Self
pub fn parenthetical(self, new_parenthetical: f64) -> Self
pub fn from_points( indentations: &ElementIndentationsPoints, resolution: &f64, ) -> ElementIndentationsInches
Trait Implementations§
Source§impl Default for ElementIndentationsInches
impl Default for ElementIndentationsInches
Source§fn default() -> ElementIndentationsInches
fn default() -> ElementIndentationsInches
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ElementIndentationsInches
impl RefUnwindSafe for ElementIndentationsInches
impl Send for ElementIndentationsInches
impl Sync for ElementIndentationsInches
impl Unpin for ElementIndentationsInches
impl UnsafeUnpin for ElementIndentationsInches
impl UnwindSafe for ElementIndentationsInches
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