pub struct AssetGraphRunnablesInner {
pub path: String,
pub usage_kind: AssetUsageKind,
pub in_pipeline: Option<bool>,
pub macros: Option<Vec<AssetGraphRunnablesInnerMacrosInner>>,
pub dbt: Option<Box<AssetGraphRunnablesInnerDbt>>,
}Fields§
§path: String§usage_kind: AssetUsageKind§in_pipeline: Option<bool>True iff the script is a pipeline member (deployed with // pipeline). Omitted when false.
macros: Option<Vec<AssetGraphRunnablesInnerMacrosInner>>Macros this script provides to the workspace registry (deployed // macros library). Omitted when empty.
dbt: Option<Box<AssetGraphRunnablesInnerDbt>>Implementations§
Source§impl AssetGraphRunnablesInner
impl AssetGraphRunnablesInner
pub fn new(path: String, usage_kind: AssetUsageKind) -> AssetGraphRunnablesInner
Trait Implementations§
Source§impl Clone for AssetGraphRunnablesInner
impl Clone for AssetGraphRunnablesInner
Source§fn clone(&self) -> AssetGraphRunnablesInner
fn clone(&self) -> AssetGraphRunnablesInner
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AssetGraphRunnablesInner
impl Debug for AssetGraphRunnablesInner
Source§impl Default for AssetGraphRunnablesInner
impl Default for AssetGraphRunnablesInner
Source§fn default() -> AssetGraphRunnablesInner
fn default() -> AssetGraphRunnablesInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssetGraphRunnablesInner
impl<'de> Deserialize<'de> for AssetGraphRunnablesInner
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
Source§impl PartialEq for AssetGraphRunnablesInner
impl PartialEq for AssetGraphRunnablesInner
Source§impl Serialize for AssetGraphRunnablesInner
impl Serialize for AssetGraphRunnablesInner
impl StructuralPartialEq for AssetGraphRunnablesInner
Auto Trait Implementations§
impl Freeze for AssetGraphRunnablesInner
impl RefUnwindSafe for AssetGraphRunnablesInner
impl Send for AssetGraphRunnablesInner
impl Sync for AssetGraphRunnablesInner
impl Unpin for AssetGraphRunnablesInner
impl UnsafeUnpin for AssetGraphRunnablesInner
impl UnwindSafe for AssetGraphRunnablesInner
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