pub struct DiscoveredFiles {
pub model_sql_files: Vec<PathBuf>,
pub seed_files: Vec<PathBuf>,
pub snapshot_sql_files: Vec<PathBuf>,
pub test_sql_files: Vec<PathBuf>,
pub yaml_files: Vec<PathBuf>,
pub macro_sql_files: Vec<PathBuf>,
}Expand description
All discovered files in the dbt project, categorized by type
Fields§
§model_sql_files: Vec<PathBuf>§seed_files: Vec<PathBuf>§snapshot_sql_files: Vec<PathBuf>§test_sql_files: Vec<PathBuf>§yaml_files: Vec<PathBuf>§macro_sql_files: Vec<PathBuf>Trait Implementations§
Source§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 UnsafeUnpin 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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more