wayne
wayne
I'm attempting to write traits that look like this: ``` pub trait Annotations { fn push_annotation(self, key: impl Into, value: impl Into) -> Self; fn append_annotations
I wonder if it would be better to discard my `impl Annotations for T` and write macros for my trait impls such that adding the annotations/labels/whatever to the top-level resource...
Also worth noting is that I can't simply use the other API path in gophercloud since it doesn't include the `CascadingDelete` function that my code is using.
> CascadingDelete is only part of Octavia (gophercloud/openstack/loadbalancer/v2) I don't see `CascadingDelete` in that package and I get a build error for it when I simply try to swap out...
Ah, nice thanks for pointing that out! In that case this issue isn't particularly urgent for me.