pub struct DataBufferOverflow {
pub link_type: LinkType,
}
Expand description
Indicates that the Controller’s data buffers have been overflowed. This can occur if the Host has sent more packets than allowed.
Defined in Vol 2, Part E, Section 7.7.26 of the spec.
Fields§
§link_type: LinkType
Indicates whether the overflow was caused by ACL or synchronous data.
Trait Implementations§
Source§impl Clone for DataBufferOverflow
impl Clone for DataBufferOverflow
Source§fn clone(&self) -> DataBufferOverflow
fn clone(&self) -> DataBufferOverflow
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DataBufferOverflow
impl Debug for DataBufferOverflow
impl Copy for DataBufferOverflow
Auto Trait Implementations§
impl Freeze for DataBufferOverflow
impl RefUnwindSafe for DataBufferOverflow
impl Send for DataBufferOverflow
impl Sync for DataBufferOverflow
impl Unpin for DataBufferOverflow
impl UnwindSafe for DataBufferOverflow
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