pub enum PresentationExpandContract {
Normal = 0,
Expanded = 1,
Condensed = 2,
}
Expand description
Valid parameter values to the function PEC
.
Variants§
Normal = 0
Expanded = 1
Expanded, multiplied by a factor not greater than 2
.
Condensed = 2
Condensed, multiplied by a factor not less than 0.5
.
Trait Implementations§
Source§impl Clone for PresentationExpandContract
impl Clone for PresentationExpandContract
Source§fn clone(&self) -> PresentationExpandContract
fn clone(&self) -> PresentationExpandContract
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 PresentationExpandContract
impl Debug for PresentationExpandContract
Source§impl Default for PresentationExpandContract
impl Default for PresentationExpandContract
Source§fn default() -> PresentationExpandContract
fn default() -> PresentationExpandContract
Returns the “default value” for a type. Read more
Source§impl FromStr for PresentationExpandContract
impl FromStr for PresentationExpandContract
impl Copy for PresentationExpandContract
impl Eq for PresentationExpandContract
impl StructuralPartialEq for PresentationExpandContract
Auto Trait Implementations§
impl Freeze for PresentationExpandContract
impl RefUnwindSafe for PresentationExpandContract
impl Send for PresentationExpandContract
impl Sync for PresentationExpandContract
impl Unpin for PresentationExpandContract
impl UnwindSafe for PresentationExpandContract
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