pub struct I2CMasterDriver<'a, I: I2CMaster<'a>> { /* private fields */ }
Implementations§
Source§impl<'a, I: I2CMaster<'a>> I2CMasterDriver<'a, I>
impl<'a, I: I2CMaster<'a>> I2CMasterDriver<'a, I>
pub fn new( i2c: &'a I, buf: &'static mut [u8], apps: Grant<App, UpcallCount<1>, AllowRoCount<0>, AllowRwCount<{ rw_allow::COUNT }>>, ) -> I2CMasterDriver<'a, I>
Trait Implementations§
Source§impl<'a, I: I2CMaster<'a>> I2CHwMasterClient for I2CMasterDriver<'a, I>
impl<'a, I: I2CMaster<'a>> I2CHwMasterClient for I2CMasterDriver<'a, I>
Source§impl<'a, I: I2CMaster<'a>> SyscallDriver for I2CMasterDriver<'a, I>
impl<'a, I: I2CMaster<'a>> SyscallDriver for I2CMasterDriver<'a, I>
Source§fn command(
&self,
cmd_num: usize,
arg1: usize,
arg2: usize,
processid: ProcessId,
) -> CommandReturn
fn command( &self, cmd_num: usize, arg1: usize, arg2: usize, processid: ProcessId, ) -> CommandReturn
Source§fn allocate_grant(&self, processid: ProcessId) -> Result<(), Error>
fn allocate_grant(&self, processid: ProcessId) -> Result<(), Error>
Request to allocate a capsule’s grant for a specific process. Read more
Source§fn allow_userspace_readable(
&self,
app: ProcessId,
which: usize,
slice: ReadWriteProcessBuffer,
) -> Result<ReadWriteProcessBuffer, (ReadWriteProcessBuffer, ErrorCode)>
fn allow_userspace_readable( &self, app: ProcessId, which: usize, slice: ReadWriteProcessBuffer, ) -> Result<ReadWriteProcessBuffer, (ReadWriteProcessBuffer, ErrorCode)>
System call for a process to pass a buffer (a
UserspaceReadableProcessBuffer
) to the kernel that the kernel can
either read or write. The kernel calls this method only after it checks
that the entire buffer is within memory the process can both read and
write. Read moreAuto Trait Implementations§
impl<'a, I> !Freeze for I2CMasterDriver<'a, I>
impl<'a, I> !RefUnwindSafe for I2CMasterDriver<'a, I>
impl<'a, I> !Send for I2CMasterDriver<'a, I>
impl<'a, I> !Sync for I2CMasterDriver<'a, I>
impl<'a, I> Unpin for I2CMasterDriver<'a, I>
impl<'a, I> !UnwindSafe for I2CMasterDriver<'a, I>
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