浏览代码

Merge pull request #813 from paulmenage/paul/socketset-lifetime-doc

Add comment about using static lifetime for SocketSets with owned storage
Dario Nieuwenhuis 1 年之前
父节点
当前提交
f9b064a4a8
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/iface/socket_set.rs

+ 3 - 1
src/iface/socket_set.rs

@@ -37,7 +37,9 @@ impl fmt::Display for SocketHandle {
 
 /// An extensible set of sockets.
 ///
-/// The lifetime `'a` is used when storing a `Socket<'a>`.
+/// The lifetime `'a` is used when storing a `Socket<'a>`.  If you're using
+/// owned buffers for your sockets (passed in as `Vec`s) you can use
+/// `SocketSet<'static>`.
 #[derive(Debug)]
 pub struct SocketSet<'a> {
     sockets: ManagedSlice<'a, SocketStorage<'a>>,