pub trait TxDescriptor: Copy {
// Required methods
fn set_buffer(&mut self, phys: u64, len: u16);
fn set_eop_ifcs_rs(&mut self);
fn is_done(&self) -> bool;
fn clear(&mut self);
}Required Methods§
Sourcefn set_buffer(&mut self, phys: u64, len: u16)
fn set_buffer(&mut self, phys: u64, len: u16)
Sets buffer.
Sourcefn set_eop_ifcs_rs(&mut self)
fn set_eop_ifcs_rs(&mut self)
Sets eop ifcs rs.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".