MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / is_not_found

Method is_not_found

atomic-cli/src/error.rs:422–432  ·  view source on GitHub ↗

Check if this error indicates something was not found.

(&self)

Source from the content-addressed store, hash-verified

420
421 /// Check if this error indicates something was not found.
422 pub fn is_not_found(&self) -> bool {
423 matches!(
424 self,
425 Self::RepositoryNotFound { .. }
426 | Self::ViewNotFound { .. }
427 | Self::FileNotFound { .. }
428 | Self::ChangeNotFound { .. }
429 | Self::VaultEntityNotFound { .. }
430 | Self::RemoteNotFound { .. }
431 )
432 }
433
434 /// Check if this error is related to view operations.
435 pub fn is_view_error(&self) -> bool {

Callers 3

resolve_identityFunction · 0.45
verify_workspace_existsFunction · 0.45
map_project_errorFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected