Function new

Source
pub fn new() -> SdResult<()>
๐Ÿ‘ŽDeprecated since 0.37.0: Please use [ShadowBuilder::builder] instead
Expand description

Generates build information for the current project. This function must be called from build.rs.

ยงExample

โ“˜
// build.rs

fn main() -> shadow_rs::SdResult<()> {
   shadow_rs::new()
}