pub enum PresentationMethod {
PUSH = 0,
MODAL = 1,
EXTERNAL = 2,
}
Variants§
Trait Implementations§
Source§impl Clone for PresentationMethod
impl Clone for PresentationMethod
Source§fn clone(&self) -> PresentationMethod
fn clone(&self) -> PresentationMethod
Returns a copy 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 PresentationMethod
impl Debug for PresentationMethod
Source§impl Default for PresentationMethod
impl Default for PresentationMethod
Source§impl<'de> Deserialize<'de> for PresentationMethod
impl<'de> Deserialize<'de> for PresentationMethod
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<'a> From<&'a str> for PresentationMethod
impl<'a> From<&'a str> for PresentationMethod
Source§impl From<i32> for PresentationMethod
impl From<i32> for PresentationMethod
Source§impl PartialEq for PresentationMethod
impl PartialEq for PresentationMethod
Source§impl Serialize for PresentationMethod
impl Serialize for PresentationMethod
impl Copy for PresentationMethod
impl Eq for PresentationMethod
impl StructuralPartialEq for PresentationMethod
Auto Trait Implementations§
impl Freeze for PresentationMethod
impl RefUnwindSafe for PresentationMethod
impl Send for PresentationMethod
impl Sync for PresentationMethod
impl Unpin for PresentationMethod
impl UnwindSafe for PresentationMethod
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