pub enum PreviewRuntimePlatform {
Macos,
IosSimulator,
Ios,
Android,
Other,
}Expand description
Runtime platform that owns the preview support app process.
Variants§
Macos
macOS preview support app.
IosSimulator
iOS Simulator preview support app.
Ios
Physical iOS preview support app.
Android
Android preview support app.
Other
Other platform.
Implementations§
Trait Implementations§
Source§impl Clone for PreviewRuntimePlatform
impl Clone for PreviewRuntimePlatform
Source§fn clone(&self) -> PreviewRuntimePlatform
fn clone(&self) -> PreviewRuntimePlatform
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PreviewRuntimePlatform
Source§impl Debug for PreviewRuntimePlatform
impl Debug for PreviewRuntimePlatform
Source§impl<'de> Deserialize<'de> for PreviewRuntimePlatform
impl<'de> Deserialize<'de> for PreviewRuntimePlatform
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
impl Eq for PreviewRuntimePlatform
Source§impl PartialEq for PreviewRuntimePlatform
impl PartialEq for PreviewRuntimePlatform
Source§impl Serialize for PreviewRuntimePlatform
impl Serialize for PreviewRuntimePlatform
impl StructuralPartialEq for PreviewRuntimePlatform
Auto Trait Implementations§
impl Freeze for PreviewRuntimePlatform
impl RefUnwindSafe for PreviewRuntimePlatform
impl Send for PreviewRuntimePlatform
impl Sync for PreviewRuntimePlatform
impl Unpin for PreviewRuntimePlatform
impl UnsafeUnpin for PreviewRuntimePlatform
impl UnwindSafe for PreviewRuntimePlatform
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