Struct decthings_api::rpc::spawned::WriteToSpawnedCommandParams
source · pub struct WriteToSpawnedCommandParams<'a, T: AsRef<[u8]>> {
pub spawned_command_id: &'a str,
pub data: T,
}
Fields§
§spawned_command_id: &'a str
The spawned command’s id.
data: T
Trait Implementations§
source§impl<'a, T: Clone + AsRef<[u8]>> Clone for WriteToSpawnedCommandParams<'a, T>
impl<'a, T: Clone + AsRef<[u8]>> Clone for WriteToSpawnedCommandParams<'a, T>
source§fn clone(&self) -> WriteToSpawnedCommandParams<'a, T>
fn clone(&self) -> WriteToSpawnedCommandParams<'a, T>
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 moreAuto Trait Implementations§
impl<'a, T> Freeze for WriteToSpawnedCommandParams<'a, T>where
T: Freeze,
impl<'a, T> RefUnwindSafe for WriteToSpawnedCommandParams<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for WriteToSpawnedCommandParams<'a, T>where
T: Send,
impl<'a, T> Sync for WriteToSpawnedCommandParams<'a, T>where
T: Sync,
impl<'a, T> Unpin for WriteToSpawnedCommandParams<'a, T>where
T: Unpin,
impl<'a, T> UnwindSafe for WriteToSpawnedCommandParams<'a, T>where
T: 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