Skip to content

Commit

Permalink
Expose update expression (#260)
Browse files Browse the repository at this point in the history
* fix: retry condition

* fix: expose update expression

* fix: pub
  • Loading branch information
bokuweb authored Jun 4, 2024
1 parent 6b59548 commit 2d16aea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions raiden-derive/src/ops/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ pub(crate) fn expand_update_item(
// #(#output_fields)*
}

struct #update_expression_name;
pub struct #update_expression_name;

impl #struct_name {
fn update_expression() -> #update_expression_name {
pub fn update_expression() -> #update_expression_name {
#update_expression_name
}
}
Expand Down

0 comments on commit 2d16aea

Please sign in to comment.