You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// for each variant#[derive(Deserialize,Serialize)]pubstructProfileS3Bucket;implEnvDeployFlowItemIdsFrom<ProfileS3Bucket>{}implProfileS3BucketTryFrom<EnvDeployFlowItemIds>{}implDisplayforProfileS3Bucket{}// maybe
then code will be a bit more robust, though it does entail defining the enum everywhere you write tests.
Need to also consider upgrades: additions, removals, and renames.
The text was updated successfully, but these errors were encountered:
Enables developers to not use strings, and
peace
to not clone everywhere.Currently
ItemId
is aCow<'_, str>
newtype. If we instead require developers to provide something like:for which
peace
generates:then code will be a bit more robust, though it does entail defining the enum everywhere you write tests.
Need to also consider upgrades: additions, removals, and renames.
The text was updated successfully, but these errors were encountered: