github.com/mutagen-io/mutagen@v0.18.0-rc1/pkg/synchronization/scan_mode.proto (about) 1 syntax = "proto3"; 2 3 package synchronization; 4 5 option go_package = "github.com/mutagen-io/mutagen/pkg/synchronization"; 6 7 // ScanMode specifies the mode for synchronization root scanning. 8 enum ScanMode { 9 // ScanMode_ScanModeDefault represents an unspecified scan mode. It should 10 // be converted to one of the following values based on the desired default 11 // behavior. 12 ScanModeDefault = 0; 13 // ScanMode_ScanModeFull specifies that full scans should be performed on 14 // each synchronization cycle. 15 ScanModeFull = 1; 16 // ScanMode_ScanModeAccelerated specifies that scans should attempt to use 17 // watch-based acceleration. 18 ScanModeAccelerated = 2; 19 }