Struct TimerSplitCapture

Source
pub struct TimerSplitCapture<T, PSCL, CH1, CH2, DacRst: DacResetTrigger> {
    pub timer: HrTim<T, PSCL, (), (), DacRst>,
    pub ch1: HrCapt<T, PSCL, CH1, NoDma>,
    pub ch2: HrCapt<T, PSCL, CH2, NoDma>,
}

Fields§

§timer: HrTim<T, PSCL, (), (), DacRst>§ch1: HrCapt<T, PSCL, CH1, NoDma>§ch2: HrCapt<T, PSCL, CH2, NoDma>

Auto Trait Implementations§

§

impl<T, PSCL, CH1, CH2, DacRst> Freeze for TimerSplitCapture<T, PSCL, CH1, CH2, DacRst>

§

impl<T, PSCL, CH1, CH2, DacRst> RefUnwindSafe for TimerSplitCapture<T, PSCL, CH1, CH2, DacRst>

§

impl<T, PSCL, CH1, CH2, DacRst> Send for TimerSplitCapture<T, PSCL, CH1, CH2, DacRst>
where T: Send, PSCL: Send, DacRst: Send, CH1: Send, CH2: Send,

§

impl<T, PSCL, CH1, CH2, DacRst> Sync for TimerSplitCapture<T, PSCL, CH1, CH2, DacRst>
where T: Sync, PSCL: Sync, DacRst: Sync, CH1: Sync, CH2: Sync,

§

impl<T, PSCL, CH1, CH2, DacRst> Unpin for TimerSplitCapture<T, PSCL, CH1, CH2, DacRst>
where T: Unpin, PSCL: Unpin, DacRst: Unpin, CH1: Unpin, CH2: Unpin,

§

impl<T, PSCL, CH1, CH2, DacRst> UnwindSafe for TimerSplitCapture<T, PSCL, CH1, CH2, DacRst>
where T: UnwindSafe, PSCL: UnwindSafe, DacRst: UnwindSafe, CH1: UnwindSafe, CH2: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.