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

Method is_not_found

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

Check if this error indicates something was not found.

(&self)

Source from the content-addressed store, hash-verified

407
408 /// Check if this error indicates something was not found.
409 pub fn is_not_found(&self) -> bool {
410 matches!(
411 self,
412 Self::RepositoryNotFound { .. }
413 | Self::ViewNotFound { .. }
414 | Self::FileNotFound { .. }
415 | Self::ChangeNotFound { .. }
416 | Self::VaultEntityNotFound { .. }
417 | Self::RemoteNotFound { .. }
418 )
419 }
420
421 /// Check if this error is related to view operations.
422 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