pub struct DiscoveredFiles {
pub root: Option<PathBuf>,
pub services: Vec<PathBuf>,
pub stages: Vec<PathBuf>,
pub variables: Vec<PathBuf>,
pub local_override: Option<PathBuf>,
}Expand description
発見されたファイル群
Fields§
§root: Option<PathBuf>ルートファイル (flow.kdl)
services: Vec<PathBuf>サービス定義ファイル (services/**/*.kdl)
stages: Vec<PathBuf>ステージ定義ファイル (stages/**/*.kdl)
variables: Vec<PathBuf>変数定義ファイル (variables/**/*.kdl)
local_override: Option<PathBuf>ローカルオーバーライドファイル (flow.local.kdl)
Trait Implementations§
Source§impl Clone for DiscoveredFiles
impl Clone for DiscoveredFiles
Source§fn clone(&self) -> DiscoveredFiles
fn clone(&self) -> DiscoveredFiles
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DiscoveredFiles
impl Debug for DiscoveredFiles
Source§impl Default for DiscoveredFiles
impl Default for DiscoveredFiles
Source§fn default() -> DiscoveredFiles
fn default() -> DiscoveredFiles
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DiscoveredFiles
impl RefUnwindSafe for DiscoveredFiles
impl Send for DiscoveredFiles
impl Sync for DiscoveredFiles
impl Unpin for DiscoveredFiles
impl UnwindSafe for DiscoveredFiles
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more