pub struct ExecuteOob<C, I = Value> {
pub execute_oob: PhantomData<&'static str>,
pub arguments: C,
pub id: I,
}Fields§
§execute_oob: PhantomData<&'static str>§arguments: C§id: IImplementations§
Source§impl<C, I> ExecuteOob<C, I>where
C: Command,
impl<C, I> ExecuteOob<C, I>where
C: Command,
pub fn new(arguments: C, id: I) -> ExecuteOob<C, I>
Trait Implementations§
Source§impl<C, I> Serialize for ExecuteOob<C, I>
impl<C, I> Serialize for ExecuteOob<C, I>
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl<C, I> Freeze for ExecuteOob<C, I>
impl<C, I> RefUnwindSafe for ExecuteOob<C, I>where
C: RefUnwindSafe,
I: RefUnwindSafe,
impl<C, I> Send for ExecuteOob<C, I>
impl<C, I> Sync for ExecuteOob<C, I>
impl<C, I> Unpin for ExecuteOob<C, I>
impl<C, I> UnwindSafe for ExecuteOob<C, I>where
C: UnwindSafe,
I: 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