Docs.rs
  • autd3-driver-22.0.0
    • autd3-driver 22.0.0
    • Docs.rs crate page
    • MIT
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • s5suzuki
    • Dependencies
      • async-trait ^0.1.77 normal optional
      • autd3-derive ^22.0.0 normal
      • bitflags ^2.0.2 normal
      • bitvec ^1.0.1 normal
      • nalgebra ^0.32.3 normal
      • num-complex ^0.4.4 normal
      • serde ^1.0.188 normal optional
      • thiserror ^1.0.31 normal
      • tokio ^1.34.0 normal
      • anyhow ^1.0.79 dev
      • assert_approx_eq ^1.1.0 dev
      • autd3 ^22.0.0 dev
      • itertools ^0.12.0 dev
      • memoffset ^0.9.0 dev
      • rand ^0.8.5 dev
      • serde_json ^1.0.107 dev
      • tokio ^1.34.0 dev
      • libc ^0.2.144 normal
      • windows ^0.52.0 normal
    • Versions
    • 29.05% of the crate is documented
  • Go to latest version
  • Platform
    • i686-pc-windows-msvc
    • i686-unknown-linux-gnu
    • x86_64-apple-darwin
    • x86_64-pc-windows-msvc
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Badges
    • Builds
    • Metadata
    • Shorthand URLs
    • Download
    • Rustdoc JSON
    • Build queue
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

autd3_driver22.0.0

ModulationProperty

Required Methods

  • loop_behavior
  • sampling_config

Implementations on Foreign Types

  • Box<dyn Modulation>

Implementors

In autd3_driver::datagram

?
Change settings

Trait autd3_driver::datagram::ModulationProperty

source ·
pub trait ModulationProperty {
    // Required methods
    fn sampling_config(&self) -> SamplingConfiguration;
    fn loop_behavior(&self) -> LoopBehavior;
}

Required Methods§

source

fn sampling_config(&self) -> SamplingConfiguration

source

fn loop_behavior(&self) -> LoopBehavior

Implementations on Foreign Types§

source§

impl ModulationProperty for Box<dyn Modulation>

source§

fn sampling_config(&self) -> SamplingConfiguration

source§

fn loop_behavior(&self) -> LoopBehavior

Implementors§

source§

impl<M: Modulation> ModulationProperty for Cache<M>

source§

impl<M: Modulation> ModulationProperty for RadiationPressure<M>

source§

impl<M: Modulation, F: Fn(usize, EmitIntensity) -> EmitIntensity> ModulationProperty for Transform<M, F>