qubit_fs/metadata/file_kind.rs
1/*******************************************************************************
2 *
3 * Copyright (c) 2026 Haixing Hu.
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0.
8 *
9 ******************************************************************************/
10//! File kind model.
11
12/// Provider-neutral resource kind.
13#[derive(Clone, Debug, Eq, PartialEq)]
14pub enum FileKind {
15 /// Regular file.
16 File,
17 /// Directory with hierarchical semantics.
18 Directory,
19 /// Symbolic link.
20 Symlink,
21 /// Object-store object.
22 Object,
23 /// Object-store prefix or WebDAV collection-like prefix.
24 Prefix,
25 /// Provider-specific resource type.
26 Other(String),
27}