pub trait ConfigVolatileFieldAccess<'a, A> {
// Required method
fn guest_cid(self) -> VolatilePtr<'a, le64, A::Restricted>
where A: RestrictAccess<ReadWrite>;
}Expand description
Socket Device Configuration Layout
Use ConfigVolatileFieldAccess to work with this struct.
Required Methods§
fn guest_cid(self) -> VolatilePtr<'a, le64, A::Restricted>where
A: RestrictAccess<ReadWrite>,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".