(&self)
| 402 | const TEMPORARY_SCHEMA_ID: u64 = 0; |
| 403 | |
| 404 | pub fn is_system(&self) -> bool { |
| 405 | match self { |
| 406 | SchemaSpecifier::Temporary => false, |
| 407 | SchemaSpecifier::Id(id) => id.is_system(), |
| 408 | } |
| 409 | } |
| 410 | |
| 411 | pub fn is_user(&self) -> bool { |
| 412 | match self { |
no outgoing calls
no test coverage detected