[][src]Struct probe_rs::DebugProbeSelector

pub struct DebugProbeSelector {
    pub vendor_id: u16,
    pub product_id: u16,
    pub serial_number: Option<String>,
}

A struct to describe the way a probe should be selected.

Construct this from a set of info or from a string.

Example:

use std::convert::TryInto;
let selector: probe_rs::DebugProbeSelector = "1337:1337:SERIAL".try_into().unwrap();

Fields

vendor_id: u16product_id: u16serial_number: Option<String>

Trait Implementations

impl Clone for DebugProbeSelector[src]

impl Debug for DebugProbeSelector[src]

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

impl From<DebugProbeInfo> for DebugProbeSelector[src]

impl FromStr for DebugProbeSelector[src]

type Err = DebugProbeSelectorParseError

The associated error which can be returned from parsing.

impl<'_> TryFrom<&'_ str> for DebugProbeSelector[src]

type Error = DebugProbeSelectorParseError

The type returned in the event of a conversion error.

impl TryFrom<String> for DebugProbeSelector[src]

type Error = DebugProbeSelectorParseError

The type returned in the event of a conversion error.

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.