pub struct ProxyOpsImpl { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl ProxyOps for ProxyOpsImpl
impl ProxyOps for ProxyOpsImpl
Source§fn provides_map(&self) -> Result<HashMap<String, String>>
fn provides_map(&self) -> Result<HashMap<String, String>>
Returns a string->string map containing user-defined aspects “provided” by the testbed
setup. For instance, whether a SPI flash chip is fitted in the socket, or whether pullup
resistors are suitable for high-speed I2C. Most of the time, this information will not
come from the actual transport layer, but from the TransportWrapper above it.
fn bootstrap(&self, options: &BootstrapOptions, payload: &[u8]) -> Result<()>
fn apply_pin_strapping(&self, strapping_name: &str) -> Result<()>
fn remove_pin_strapping(&self, strapping_name: &str) -> Result<()>
Auto Trait Implementations§
impl Freeze for ProxyOpsImpl
impl !RefUnwindSafe for ProxyOpsImpl
impl !Send for ProxyOpsImpl
impl !Sync for ProxyOpsImpl
impl Unpin for ProxyOpsImpl
impl !UnwindSafe for ProxyOpsImpl
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