#[non_exhaustive]pub struct Target {
pub database: String,
pub schema: String,
pub name: String,
/* private fields */
}Expand description
Represents an action identifier. If the action writes output, the output will be written to the referenced database object.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.database: StringOptional. The action’s database (Google Cloud project ID) .
schema: StringOptional. The action’s schema (BigQuery dataset ID), within database.
name: StringOptional. The action’s name, within database and schema.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Target
Auto Trait Implementations§
impl Freeze for Target
impl RefUnwindSafe for Target
impl Send for Target
impl Sync for Target
impl Unpin for Target
impl UnwindSafe for Target
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