Returns the ID of the peeked collection.
(&self)
| 427 | impl PeekTarget { |
| 428 | /// Returns the ID of the peeked collection. |
| 429 | pub fn id(&self) -> GlobalId { |
| 430 | match self { |
| 431 | Self::Index { id } => *id, |
| 432 | Self::Persist { id, .. } => *id, |
| 433 | } |
| 434 | } |
| 435 | } |
| 436 | |
| 437 | /// Peek a collection, either in an arrangement or Persist. |
no outgoing calls
no test coverage detected