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 7ff1364 commit 6e47c7bCopy full SHA for 6e47c7b
src/iface/socket_set.rs
@@ -37,7 +37,9 @@ impl fmt::Display for SocketHandle {
37
38
/// An extensible set of sockets.
39
///
40
-/// The lifetime `'a` is used when storing a `Socket<'a>`.
+/// The lifetime `'a` is used when storing a `Socket<'a>`. If you're using
41
+/// owned buffers for your sockets (passed in as `Vec`s) you can use
42
+/// `SocketSet<'static>`.
43
#[derive(Debug)]
44
pub struct SocketSet<'a> {
45
sockets: ManagedSlice<'a, SocketStorage<'a>>,
0 commit comments