[][src]Struct probe_rs::DebugProbeInfo

pub struct DebugProbeInfo {
    pub identifier: String,
    pub vendor_id: u16,
    pub product_id: u16,
    pub serial_number: Option<String>,
    pub probe_type: DebugProbeType,
}

Fields

identifier: Stringvendor_id: u16product_id: u16serial_number: Option<String>probe_type: DebugProbeType

Implementations

impl DebugProbeInfo[src]

pub fn new<S: Into<String>>(
    identifier: S,
    vendor_id: u16,
    product_id: u16,
    serial_number: Option<String>,
    probe_type: DebugProbeType
) -> Self
[src]

Creates a new info struct that uniquely identifies a probe.

pub fn open(&self) -> Result<Probe, DebugProbeError>[src]

Open the probe described by this DebugProbeInfo.

Trait Implementations

impl Clone for DebugProbeInfo[src]

impl Debug for DebugProbeInfo[src]

impl<'_> From<&'_ DebugProbeInfo> for DebugProbeSelector[src]

impl From<DebugProbeInfo> for DebugProbeSelector[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> 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.