1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
use crateXfer;
/// Generic operation trait for network operations (DNS, TCP, UDP, etc.)
///
/// This trait provides a common interface for all network operations that need to
/// interact with the WINC manager and callbacks. Operations implement `poll_impl`
/// to perform their specific logic while receiving direct mutable references to
/// the required resources.
///
/// # Type Parameters
/// * `X` - The transfer implementation type
///
/// # Associated Types
/// * `Output` - The successful result type for this operation
/// * `Error` - The error type this operation can produce