Struct drv8305::register::GateDriveControl[][src]

pub struct GateDriveControl {
    pub bits: u16,
    pub comm_option: CommOption,
    pub pwm_mode: PwmMode,
    pub dead_time: u8,
    pub tblank: u8,
    pub tvds: u8,
}

Fields

bits: u16comm_option: CommOptionpwm_mode: PwmModedead_time: u8tblank: u8tvds: u8

Implementations

impl GateDriveControl[src]

pub fn comm_option(self, comm_option: CommOption) -> Self[src]

pub fn pwm_mode(self, pwm_mode: PwmMode) -> Self[src]

pub fn dead_time(self, dead_time: u8) -> Self[src]

pub fn tblank(self, tblank: u8) -> Self[src]

pub fn tvds(self, tvds: u8) -> Self[src]

Trait Implementations

impl Clone for GateDriveControl[src]

impl Copy for GateDriveControl[src]

impl Debug for GateDriveControl[src]

impl Register for GateDriveControl[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> Same<T> for T

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.