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

Method to_file_output_options

atomic-core/src/record/workflow/retrieve.rs:98–107  ·  view source on GitHub ↗

Convert to file output options.

(self)

Source from the content-addressed store, hash-verified

96
97 /// Convert to file output options.
98 fn to_file_output_options(self) -> FileOutputOptions {
99 let mut opts = FileOutputOptions::new();
100 if self.include_deleted {
101 opts = opts.include_deleted(true);
102 }
103 if let Some(max) = self.max_vertices {
104 opts = opts.max_vertices(max);
105 }
106 opts
107 }
108}
109
110// RETRIEVE RESULT

Callers 1

Calls 2

include_deletedMethod · 0.45
max_verticesMethod · 0.45

Tested by

no test coverage detected