Struct autd::controller::AUTD[][src]

pub struct AUTD<L: Link + 'static> { /* fields omitted */ }

Implementations

impl<L: Link + 'static> AUTD<L>[src]

pub fn open(geometry: Geometry, link: L) -> Result<Self, Box<dyn Error>>[src]

pub fn is_open(&self) -> bool[src]

pub fn silent_mode(&self) -> bool[src]

pub fn remaining_in_buffer(&self) -> usize[src]

pub fn logic(&self) -> MutexGuard<'_, AUTDLogic<L>>[src]

pub fn set_silent_mode(&mut self, silent: bool)[src]

pub fn clear(&mut self) -> Result<bool, Box<dyn Error>>[src]

pub fn calibrate(
    &mut self,
    config: Configuration
) -> Result<bool, Box<dyn Error>>
[src]

pub fn close(self) -> Result<bool, Box<dyn Error>>[src]

pub fn close_impl(&mut self) -> Result<bool, Box<dyn Error>>[src]

pub fn flush(&mut self)[src]

pub fn stop(&mut self) -> Result<(), Box<dyn Error>>[src]

pub fn append_gain<G: Gain + 'static>(&mut self, gain: G)[src]

pub fn append_gain_sync<G: Gain>(
    &mut self,
    gain: &mut G
) -> Result<(), Box<dyn Error>>
[src]

pub fn append_gain_sync_with_wait<G: Gain>(
    &mut self,
    gain: &mut G,
    wait: bool
) -> Result<(), Box<dyn Error>>
[src]

pub fn append_modulation<M: Modulation + 'static>(&mut self, m: M)[src]

pub fn append_modulation_sync<M: Modulation>(
    &mut self,
    m: &mut M
) -> Result<(), Box<dyn Error>>
[src]

pub fn append_sequence(
    &mut self,
    seq: &mut PointSequence
) -> Result<(), Box<dyn Error>>
[src]

pub fn firmware_info_list(
    &mut self
) -> Result<Vec<FirmwareInfo>, Box<dyn Error>>
[src]

pub fn append_stm_gain<G: Gain + 'static>(&mut self, gain: G)[src]

pub fn append_stm_gains(&mut self, gains: Vec<Box<dyn Gain>>)[src]

pub fn start_stm(&mut self, freq: Float)[src]

pub fn stop_stm(&mut self)[src]

pub fn finish_stm(&mut self)[src]

Trait Implementations

impl<L: Link + 'static> Drop for AUTD<L>[src]

Auto Trait Implementations

impl<L> !RefUnwindSafe for AUTD<L>

impl<L> Send for AUTD<L>

impl<L> !Sync for AUTD<L>

impl<L> Unpin for AUTD<L>

impl<L> !UnwindSafe for AUTD<L>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<V> IntoPnt<V> for V[src]

impl<V> IntoVec<V> for V[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,