#[repr(align(4))]
pub struct Aligned<T: ?Sized>(pub T);
Expand description
A wrapper type that aligns its contents on a 4-Byte boundary.
ITM transfers are most efficient when the data is 4-Byte-aligned. This type provides an easy
way to accomplish and enforce such an alignment.
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
Returns the argument unchanged.
Calls U::from(self)
.
That is, this conversion is whatever the implementation of
From<T> for U
chooses to do.
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.