pub enum Participator {
Component(String, Option<String>, Option<String>),
Service(String),
}Variants§
Component(String, Option<String>, Option<String>)
UI component addr, app_addr and client addr
Service(String)
Service process addr running in background somewhere
Trait Implementations§
Source§impl Clone for Participator
impl Clone for Participator
Source§fn clone(&self) -> Participator
fn clone(&self) -> Participator
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 Participator
impl Debug for Participator
Source§impl<'de> Deserialize<'de> for Participator
impl<'de> Deserialize<'de> for Participator
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 Participator
impl RefUnwindSafe for Participator
impl Send for Participator
impl Sync for Participator
impl Unpin for Participator
impl UnwindSafe for Participator
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