pub struct EseCommand;
Expand description
§10.10 *ESE, Standard Event Status Enable Command
The Standard Event Status Enable command sets the Standard Event Status Enable Register bits as defined in 11.5.1.3.
§10.11 *ESE?, Standard Event Status Enable Query
The Standard Event Status Enable query allows the programmer to determine the current contents of the Standard Event Status Enable Register. See 11.5.1.3.
Trait Implementations§
Source§impl Clone for EseCommand
impl Clone for EseCommand
Source§fn clone(&self) -> EseCommand
fn clone(&self) -> EseCommand
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<D> Command<D> for EseCommand
impl<D> Command<D> for EseCommand
Source§fn meta(&self) -> CommandTypeMeta
fn meta(&self) -> CommandTypeMeta
Hint about the allowed forms this command allows. Read more
Source§fn event(
&self,
device: &mut D,
_context: &mut Context<'_>,
params: Parameters<'_, '_>,
) -> Result<()>
fn event( &self, device: &mut D, _context: &mut Context<'_>, params: Parameters<'_, '_>, ) -> Result<()>
Called when the event form
COMmand
is used. Read moreSource§fn query(
&self,
device: &mut D,
_context: &mut Context<'_>,
_params: Parameters<'_, '_>,
response: ResponseUnit<'_>,
) -> Result<()>
fn query( &self, device: &mut D, _context: &mut Context<'_>, _params: Parameters<'_, '_>, response: ResponseUnit<'_>, ) -> Result<()>
Called when the query form
COMmand?
is used Read moreSource§impl Debug for EseCommand
impl Debug for EseCommand
impl Copy for EseCommand
Auto Trait Implementations§
impl Freeze for EseCommand
impl RefUnwindSafe for EseCommand
impl Send for EseCommand
impl Sync for EseCommand
impl Unpin for EseCommand
impl UnwindSafe for EseCommand
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