pub enum BlankOrNotBlank {
Blank,
NotBlank,
Any,
}Expand description
Blank or not blank page for conditional page master selection
Variants§
Blank
Blank pages (pages with no content)
NotBlank
Non-blank pages (pages with content)
Any
Any page (default)
Trait Implementations§
Source§impl Clone for BlankOrNotBlank
impl Clone for BlankOrNotBlank
Source§fn clone(&self) -> BlankOrNotBlank
fn clone(&self) -> BlankOrNotBlank
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 BlankOrNotBlank
impl Debug for BlankOrNotBlank
Source§impl PartialEq for BlankOrNotBlank
impl PartialEq for BlankOrNotBlank
impl Copy for BlankOrNotBlank
impl Eq for BlankOrNotBlank
impl StructuralPartialEq for BlankOrNotBlank
Auto Trait Implementations§
impl Freeze for BlankOrNotBlank
impl RefUnwindSafe for BlankOrNotBlank
impl Send for BlankOrNotBlank
impl Sync for BlankOrNotBlank
impl Unpin for BlankOrNotBlank
impl UnsafeUnpin for BlankOrNotBlank
impl UnwindSafe for BlankOrNotBlank
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