mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-11 11:06:22 -04:00
20 lines
453 B
Markdown
20 lines
453 B
Markdown
```rust
|
|
// file properties add additional functionality to the file resource
|
|
pub enum NativeFileProperty {
|
|
PreviewMedia { resolution: PreviewMediaResolution }
|
|
Tag { id: String },
|
|
ImageMetadata,
|
|
GeoLocation,
|
|
Package,
|
|
SyntaxHighlight,
|
|
GithubRepository
|
|
}
|
|
|
|
FileType::new(".png", vec![
|
|
NativeFileProperty::PreviewMedia {
|
|
resolution: PreviewMediaResolution::Medium
|
|
},
|
|
NativeFileProperty::ImageMetadata
|
|
])
|
|
|
|
``` |