pub struct HostRuntimeRequest<C> {
pub host_id: String,
pub action: HostRuntimeAction<C>,
}Fields§
§host_id: String§action: HostRuntimeAction<C>Trait Implementations§
Source§impl<C: Clone> Clone for HostRuntimeRequest<C>
impl<C: Clone> Clone for HostRuntimeRequest<C>
Source§fn clone(&self) -> HostRuntimeRequest<C>
fn clone(&self) -> HostRuntimeRequest<C>
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<C: Debug> Debug for HostRuntimeRequest<C>
impl<C: Debug> Debug for HostRuntimeRequest<C>
Source§impl<'de, C> Deserialize<'de> for HostRuntimeRequest<C>where
C: Deserialize<'de>,
impl<'de, C> Deserialize<'de> for HostRuntimeRequest<C>where
C: Deserialize<'de>,
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<C> Freeze for HostRuntimeRequest<C>where
HostRuntimeAction<C>: Freeze,
impl<C> RefUnwindSafe for HostRuntimeRequest<C>where
HostRuntimeAction<C>: RefUnwindSafe,
impl<C> Send for HostRuntimeRequest<C>where
HostRuntimeAction<C>: Send,
impl<C> Sync for HostRuntimeRequest<C>where
HostRuntimeAction<C>: Sync,
impl<C> Unpin for HostRuntimeRequest<C>where
HostRuntimeAction<C>: Unpin,
impl<C> UnsafeUnpin for HostRuntimeRequest<C>where
HostRuntimeAction<C>: UnsafeUnpin,
impl<C> UnwindSafe for HostRuntimeRequest<C>where
HostRuntimeAction<C>: UnwindSafe,
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