#[repr(C)]pub struct Register8 {
pub address: u8,
pub data: u8,
}Expand description
A single register read from or written to with an SPMI command that uses an 8-bit address.
Fields§
§address: u8§data: u8Trait Implementations§
Source§impl<D: ResourceDialect> Decode<Register8, D> for Register8
impl<D: ResourceDialect> Decode<Register8, D> for Register8
Source§impl<D: ResourceDialect, T0: Encode<u8, D>, T1: Encode<u8, D>> Encode<Register8, D> for (T0, T1)
impl<D: ResourceDialect, T0: Encode<u8, D>, T1: Encode<u8, D>> Encode<Register8, D> for (T0, T1)
Source§impl Ord for Register8
impl Ord for Register8
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for Register8
impl PartialOrd for Register8
Source§impl TypeMarker for Register8
impl TypeMarker for Register8
Source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
Source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align.Source§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned to a single memcpy. Read moreSource§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned to a single memcpy.Source§impl ValueTypeMarker for Register8
impl ValueTypeMarker for Register8
impl Copy for Register8
impl Eq for Register8
impl Persistable for Register8
impl StructuralPartialEq for Register8
Auto Trait Implementations§
impl Freeze for Register8
impl RefUnwindSafe for Register8
impl Send for Register8
impl Sync for Register8
impl Unpin for Register8
impl UnsafeUnpin for Register8
impl UnwindSafe for Register8
Blanket Implementations§
Source§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
Source§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
Source§type MarkerInResultUnion = T
type MarkerInResultUnion = T
The marker type to use when the body is nested in a result union.
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