[][src]Struct pico_streaming::PicoStreamingDevice

pub struct PicoStreamingDevice {
    pub events: Bus<StreamingEvent>,
    // some fields omitted
}

Encapsulates a PicoDevice and adds streaming functionality

Automatically reconfigures and restarts streaming if the device connection is lost.

Fields

events: Bus<StreamingEvent>

Implementations

impl PicoStreamingDevice[src]

pub fn get_serial(&self) -> String[src]

pub fn get_variant(&self) -> String[src]

pub fn enable_channel(
    &self,
    channel: PicoChannel,
    range: PicoRange,
    coupling: PicoCoupling
) -> PicoResult<()>
[src]

pub fn disable_channel(&self, channel: PicoChannel)[src]

pub fn get_channels(&self) -> Vec<PicoChannel>[src]

pub fn get_valid_ranges(&self, channel: PicoChannel) -> Option<Vec<PicoRange>>[src]

pub fn start(&self, samples_per_second: u32) -> PicoResult<u32>[src]

Start streaming

pub fn stop(&self)[src]

Stop streaming

Trait Implementations

impl Clone for PicoStreamingDevice[src]

impl Debug for PicoStreamingDevice[src]

impl Eq for PicoStreamingDevice[src]

impl Hash for PicoStreamingDevice[src]

impl PartialEq<PicoStreamingDevice> for PicoStreamingDevice[src]

Auto Trait Implementations

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<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.