pub struct PreviewAppInstance {
pub pid: u32,
pub host: IpAddr,
pub port: u16,
pub waterui_core_fingerprint: String,
pub registered_at_unix_ms: u64,
}Expand description
A registered local preview support app instance.
Fields§
§pid: u32Operating-system process identifier of the support app.
host: IpAddrHost address the support app listens on.
port: u16TCP port the support app listens on.
waterui_core_fingerprint: StringRuntime fingerprint of the support app build.
registered_at_unix_ms: u64Registration timestamp in milliseconds since the Unix epoch.
Implementations§
Trait Implementations§
Source§impl Clone for PreviewAppInstance
impl Clone for PreviewAppInstance
Source§fn clone(&self) -> PreviewAppInstance
fn clone(&self) -> PreviewAppInstance
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 moreSource§impl Debug for PreviewAppInstance
impl Debug for PreviewAppInstance
Source§impl<'de> Deserialize<'de> for PreviewAppInstance
impl<'de> Deserialize<'de> for PreviewAppInstance
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
Auto Trait Implementations§
impl Freeze for PreviewAppInstance
impl RefUnwindSafe for PreviewAppInstance
impl Send for PreviewAppInstance
impl Sync for PreviewAppInstance
impl Unpin for PreviewAppInstance
impl UnsafeUnpin for PreviewAppInstance
impl UnwindSafe for PreviewAppInstance
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