nxp-pac

Crates

git

Versions

lpc55s69_cm33_core1

Flavors

Pmcfg

Struct Pmcfg 

Source
#[repr(transparent)]
pub struct Pmcfg(pub u32);
Expand description

Pattern match interrupt bit slice configuration register

Tuple Fields§

§0: u32

Implementations§

Source§

impl Pmcfg

Source

pub const fn prod_endpts0(&self) -> ProdEndpts0

Determines whether slice 0 is an endpoint.

Source

pub const fn set_prod_endpts0(&mut self, val: ProdEndpts0)

Determines whether slice 0 is an endpoint.

Source

pub const fn prod_endpts1(&self) -> ProdEndpts1

Determines whether slice 1 is an endpoint.

Source

pub const fn set_prod_endpts1(&mut self, val: ProdEndpts1)

Determines whether slice 1 is an endpoint.

Source

pub const fn prod_endpts2(&self) -> ProdEndpts2

Determines whether slice 2 is an endpoint.

Source

pub const fn set_prod_endpts2(&mut self, val: ProdEndpts2)

Determines whether slice 2 is an endpoint.

Source

pub const fn prod_endpts3(&self) -> ProdEndpts3

Determines whether slice 3 is an endpoint.

Source

pub const fn set_prod_endpts3(&mut self, val: ProdEndpts3)

Determines whether slice 3 is an endpoint.

Source

pub const fn prod_endpts4(&self) -> ProdEndpts4

Determines whether slice 4 is an endpoint.

Source

pub const fn set_prod_endpts4(&mut self, val: ProdEndpts4)

Determines whether slice 4 is an endpoint.

Source

pub const fn prod_endpts5(&self) -> ProdEndpts5

Determines whether slice 5 is an endpoint.

Source

pub const fn set_prod_endpts5(&mut self, val: ProdEndpts5)

Determines whether slice 5 is an endpoint.

Source

pub const fn prod_endpts6(&self) -> ProdEndpts6

Determines whether slice 6 is an endpoint.

Source

pub const fn set_prod_endpts6(&mut self, val: ProdEndpts6)

Determines whether slice 6 is an endpoint.

Source

pub const fn cfg0(&self) -> Cfg0

Specifies the match contribution condition for bit slice 0.

Source

pub const fn set_cfg0(&mut self, val: Cfg0)

Specifies the match contribution condition for bit slice 0.

Source

pub const fn cfg1(&self) -> Cfg1

Specifies the match contribution condition for bit slice 1.

Source

pub const fn set_cfg1(&mut self, val: Cfg1)

Specifies the match contribution condition for bit slice 1.

Source

pub const fn cfg2(&self) -> Cfg2

Specifies the match contribution condition for bit slice 2.

Source

pub const fn set_cfg2(&mut self, val: Cfg2)

Specifies the match contribution condition for bit slice 2.

Source

pub const fn cfg3(&self) -> Cfg3

Specifies the match contribution condition for bit slice 3.

Source

pub const fn set_cfg3(&mut self, val: Cfg3)

Specifies the match contribution condition for bit slice 3.

Source

pub const fn cfg4(&self) -> Cfg4

Specifies the match contribution condition for bit slice 4.

Source

pub const fn set_cfg4(&mut self, val: Cfg4)

Specifies the match contribution condition for bit slice 4.

Source

pub const fn cfg5(&self) -> Cfg5

Specifies the match contribution condition for bit slice 5.

Source

pub const fn set_cfg5(&mut self, val: Cfg5)

Specifies the match contribution condition for bit slice 5.

Source

pub const fn cfg6(&self) -> Cfg6

Specifies the match contribution condition for bit slice 6.

Source

pub const fn set_cfg6(&mut self, val: Cfg6)

Specifies the match contribution condition for bit slice 6.

Source

pub const fn cfg7(&self) -> Cfg7

Specifies the match contribution condition for bit slice 7.

Source

pub const fn set_cfg7(&mut self, val: Cfg7)

Specifies the match contribution condition for bit slice 7.

Trait Implementations§

Source§

impl Clone for Pmcfg

Source§

fn clone(&self) -> Pmcfg

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Pmcfg

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Pmcfg

Source§

fn default() -> Pmcfg

Returns the “default value” for a type. Read more
Source§

impl PartialEq for Pmcfg

Source§

fn eq(&self, other: &Pmcfg) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for Pmcfg

Source§

impl Eq for Pmcfg

Source§

impl StructuralPartialEq for Pmcfg

Auto Trait Implementations§

§

impl Freeze for Pmcfg

§

impl RefUnwindSafe for Pmcfg

§

impl Send for Pmcfg

§

impl Sync for Pmcfg

§

impl Unpin for Pmcfg

§

impl UnwindSafe for Pmcfg

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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.