pub struct __rtic_internal_initLocalResources<'a> {
pub uart1_rx_queue: &'static mut Channel<Response, UART1_RX_QUEUE_DEPTH>,
/* private fields */
}
Expand description
Local resources init
has access to
Fields§
§uart1_rx_queue: &'static mut Channel<Response, UART1_RX_QUEUE_DEPTH>
Implementations§
source§impl<'a> __rtic_internal_initLocalResources<'a>
impl<'a> __rtic_internal_initLocalResources<'a>
User code end
Auto Trait Implementations§
impl<'a> Freeze for __rtic_internal_initLocalResources<'a>
impl<'a> !RefUnwindSafe for __rtic_internal_initLocalResources<'a>
impl<'a> Send for __rtic_internal_initLocalResources<'a>
impl<'a> Sync for __rtic_internal_initLocalResources<'a>
impl<'a> Unpin for __rtic_internal_initLocalResources<'a>
impl<'a> !UnwindSafe for __rtic_internal_initLocalResources<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more