pub struct USIInfoSender<W>where
W: USIOutputWriter + Send + 'static,{ /* private fields */ }Expand description
infoコマンドを標準出力へ出力するInfoSenderの実装
Implementations§
Source§impl<W> USIInfoSender<W>where
W: USIOutputWriter + Send + 'static,
impl<W> USIInfoSender<W>where
W: USIOutputWriter + Send + 'static,
Sourcepub fn new(worker: InfoSendWorker<W>) -> USIInfoSender<W>
pub fn new(worker: InfoSendWorker<W>) -> USIInfoSender<W>
Trait Implementations§
Source§impl<W> Clone for USIInfoSender<W>where
W: USIOutputWriter + Send + 'static,
impl<W> Clone for USIInfoSender<W>where
W: USIOutputWriter + Send + 'static,
Source§fn clone(&self) -> USIInfoSender<W>
fn clone(&self) -> USIInfoSender<W>
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<W> InfoSender for USIInfoSender<W>where
W: USIOutputWriter + Send + 'static,
impl<W> InfoSender for USIInfoSender<W>where
W: USIOutputWriter + Send + 'static,
Source§fn send(
&mut self,
commands: Vec<UsiInfoSubCommand>,
) -> Result<(), InfoSendError>
fn send( &mut self, commands: Vec<UsiInfoSubCommand>, ) -> Result<(), InfoSendError>
infoコマンドを出力する Read more
Source§fn send_immediate(
&mut self,
commands: Vec<UsiInfoSubCommand>,
) -> Result<(), InfoSendError>
fn send_immediate( &mut self, commands: Vec<UsiInfoSubCommand>, ) -> Result<(), InfoSendError>
infoコマンドを遅延なしで出力する Read more
fn flush(&mut self) -> Result<(), InfoSendError>
Auto Trait Implementations§
impl<W> Freeze for USIInfoSender<W>
impl<W> RefUnwindSafe for USIInfoSender<W>
impl<W> Send for USIInfoSender<W>
impl<W> Sync for USIInfoSender<W>
impl<W> Unpin for USIInfoSender<W>
impl<W> UnsafeUnpin for USIInfoSender<W>
impl<W> UnwindSafe for USIInfoSender<W>
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