[][src]Struct ublox_cellular::Config

pub struct Config<RST, DTR, PWR, VINT> { /* fields omitted */ }

Implementations

impl<RST, DTR, PWR, VINT> Config<RST, DTR, PWR, VINT> where
    RST: OutputPin,
    PWR: OutputPin,
    DTR: OutputPin,
    VINT: InputPin
[src]

pub fn new(pin: &str) -> Self[src]

pub fn with_rst(self, rst_pin: RST) -> Self[src]

pub fn with_pwr(self, pwr_pin: PWR) -> Self[src]

pub fn with_dtr(self, dtr_pin: DTR) -> Self[src]

pub fn with_vint(self, vint_pin: VINT) -> Self[src]

pub fn baud_rate<B: Into<u32>>(self, baud_rate: B) -> Self[src]

pub fn with_flow_control(self) -> Self[src]

pub fn with_apn_info(self, apn_info: APNInfo) -> Self[src]

pub fn pin(&self) -> &str[src]

Trait Implementations

impl<RST: Debug, DTR: Debug, PWR: Debug, VINT: Debug> Debug for Config<RST, DTR, PWR, VINT>[src]

impl<RST, DTR, PWR, VINT> Default for Config<RST, DTR, PWR, VINT>[src]

Auto Trait Implementations

impl<RST, DTR, PWR, VINT> RefUnwindSafe for Config<RST, DTR, PWR, VINT> where
    DTR: RefUnwindSafe,
    PWR: RefUnwindSafe,
    RST: RefUnwindSafe,
    VINT: RefUnwindSafe

impl<RST, DTR, PWR, VINT> Send for Config<RST, DTR, PWR, VINT> where
    DTR: Send,
    PWR: Send,
    RST: Send,
    VINT: Send

impl<RST, DTR, PWR, VINT> Sync for Config<RST, DTR, PWR, VINT> where
    DTR: Sync,
    PWR: Sync,
    RST: Sync,
    VINT: Sync

impl<RST, DTR, PWR, VINT> Unpin for Config<RST, DTR, PWR, VINT> where
    DTR: Unpin,
    PWR: Unpin,
    RST: Unpin,
    VINT: Unpin

impl<RST, DTR, PWR, VINT> UnwindSafe for Config<RST, DTR, PWR, VINT> where
    DTR: UnwindSafe,
    PWR: UnwindSafe,
    RST: UnwindSafe,
    VINT: UnwindSafe

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> Same<T> for T[src]

type Output = T

Should always be Self

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.