The table name for this operation.
(&self)
| 58 | impl PreparedOp { |
| 59 | /// The table name for this operation. |
| 60 | pub(crate) fn table_name(&self) -> &str { |
| 61 | match self { |
| 62 | Self::Put { key_info, .. } |
| 63 | | Self::Delete { key_info, .. } |
| 64 | | Self::Update { key_info, .. } |
| 65 | | Self::ConditionCheck { key_info, .. } => &key_info.table_name, |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | /// Approximate item size for transaction size limit enforcement. |
| 70 | /// |
no outgoing calls