pub enum LaneClaimError {
AlreadyClaimed,
DuplicateInterfaceId {
id: InterfaceId,
},
LaneSetFull {
capacity: usize,
},
NotificationCapacityExceeded {
required: usize,
capacity: usize,
},
FrameCapacityExceeded {
required: usize,
capacity: usize,
},
EmptyOutboundBuffer,
}Variants§
AlreadyClaimed
DuplicateInterfaceId
Fields
§
id: InterfaceIdLaneSetFull
NotificationCapacityExceeded
FrameCapacityExceeded
EmptyOutboundBuffer
Trait Implementations§
Source§impl Debug for LaneClaimError
impl Debug for LaneClaimError
impl Eq for LaneClaimError
Source§impl PartialEq for LaneClaimError
impl PartialEq for LaneClaimError
impl StructuralPartialEq for LaneClaimError
Auto Trait Implementations§
impl Freeze for LaneClaimError
impl RefUnwindSafe for LaneClaimError
impl Send for LaneClaimError
impl Sync for LaneClaimError
impl Unpin for LaneClaimError
impl UnsafeUnpin for LaneClaimError
impl UnwindSafe for LaneClaimError
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