-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for unions #557
Support for unions #557
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## main #557 +/- ##
==========================================
+ Coverage 77.49% 80.49% +3.00%
==========================================
Files 31 31
Lines 3421 3487 +66
==========================================
+ Hits 2651 2807 +156
+ Misses 770 680 -90 ☔ View full report in Codecov by Sentry. |
}); | ||
} | ||
|
||
fn into_domain<F: serde::Serialize>(output: WitOutput) -> Output<F> { |
Check warning
Code scanning / clippy
function into_domain is never used Warning
providers/pulumi_wasm_provider_typesystem_rust/src/resource/typesystem_server.rs
Fixed
Show fixed
Hide fixed
providers/pulumi_wasm_provider_typesystem_rust/src/resource/typesystem_server.rs
Fixed
Show fixed
Hide fixed
/// | ||
pub fn create(name: &str, args: typesystemServerArgs) -> typesystemServerResult { | ||
|
||
let result = crate::bindings::pulumi::typesystem::typesystem_server::invoke(name, &crate::bindings::pulumi::typesystem::typesystem_server::Args { |
Check warning
Code scanning / clippy
unused variable: result Warning
Closes #394