We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e551eca commit 9298405Copy full SHA for 9298405
src/unix/solarish/mod.rs
@@ -557,6 +557,17 @@ cfg_if! {
557
}
558
559
560
+ impl ::fmt::Debug for door_desc_t__d_data {
561
+ fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
562
+ unsafe {
563
+ match self {
564
+ Self { d_desc } => f.debug_struct("door_desc_t__d_data").field("d_desc", &self.d_desc),
565
+ Self { d_resv } => f.debug_struct("door_desc_t__d_data").field("d_resv", &self.d_resv),
566
+ }
567
568
569
570
+
571
impl PartialEq for epoll_event {
572
fn eq(&self, other: &epoll_event) -> bool {
573
self.events == other.events
0 commit comments