Gets the UUID for the connection, if it exists.
(&self)
| 231 | impl ConnectionUuidHandle { |
| 232 | /// Gets the UUID for the connection, if it exists. |
| 233 | pub fn get(&self) -> Option<Uuid> { |
| 234 | *self.0.lock().expect("lock poisoned") |
| 235 | } |
| 236 | |
| 237 | /// Sets the UUID for this connection. |
| 238 | pub fn set(&self, conn_uuid: Uuid) { |