pub struct ManifestNode {
pub unique_id: String,
pub name: String,
pub resource_type: String,
pub depends_on: DependsOn,
pub config: ManifestConfig,
pub description: Option<String>,
pub path: Option<String>,
pub original_file_path: Option<String>,
pub columns: HashMap<String, ManifestColumn>,
pub compiled_code: Option<String>,
pub database: Option<String>,
pub schema: Option<String>,
}Expand description
A node entry in the manifest (model, seed, snapshot, test, analysis)
Fields§
§unique_id: String§name: String§resource_type: String§depends_on: DependsOn§config: ManifestConfig§description: Option<String>§path: Option<String>§original_file_path: Option<String>Project-root-relative path (e.g. “models/staging/stg_orders.sql”).
Present in dbt >=1.x manifests; preferred over path for file matching.
columns: HashMap<String, ManifestColumn>Column definitions keyed by column name
compiled_code: Option<String>Compiled SQL code (Jinja resolved) — present after dbt compile or dbt run
database: Option<String>Database name (e.g., “jaffle_shop”)
schema: Option<String>Schema name (e.g., “main”)
Trait Implementations§
Source§impl Debug for ManifestNode
impl Debug for ManifestNode
Source§impl<'de> Deserialize<'de> for ManifestNode
impl<'de> Deserialize<'de> for ManifestNode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ManifestNode
impl RefUnwindSafe for ManifestNode
impl Send for ManifestNode
impl Sync for ManifestNode
impl Unpin for ManifestNode
impl UnsafeUnpin for ManifestNode
impl UnwindSafe for ManifestNode
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
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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