pub enum PrintLayoutError {
InvalidPaperDimensions,
InvalidMargins,
InvalidSystemHeight,
InvalidScale,
NoUsablePageArea,
InvalidKeepTogetherRange,
KeepTogetherExceedsSystemCapacity,
KeepTogetherConflictsWithExplicitBreak,
RepeatRangeExceedsPageCapacity,
}Variants§
InvalidPaperDimensions
InvalidMargins
InvalidSystemHeight
InvalidScale
NoUsablePageArea
InvalidKeepTogetherRange
KeepTogetherExceedsSystemCapacity
KeepTogetherConflictsWithExplicitBreak
RepeatRangeExceedsPageCapacity
Trait Implementations§
Source§impl Debug for PrintLayoutError
impl Debug for PrintLayoutError
Source§impl Display for PrintLayoutError
impl Display for PrintLayoutError
Source§impl Error for PrintLayoutError
impl Error for PrintLayoutError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for PrintLayoutError
impl PartialEq for PrintLayoutError
impl StructuralPartialEq for PrintLayoutError
Auto Trait Implementations§
impl Freeze for PrintLayoutError
impl RefUnwindSafe for PrintLayoutError
impl Send for PrintLayoutError
impl Sync for PrintLayoutError
impl Unpin for PrintLayoutError
impl UnsafeUnpin for PrintLayoutError
impl UnwindSafe for PrintLayoutError
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