-
Notifications
You must be signed in to change notification settings - Fork 199
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
Remove unneeded trait lifetime in geo-traits #1114
Conversation
type Iter = Cloned<Iter<'a, Self::ItemType>>; | ||
impl<'a, T: CoordNum> GeometryCollectionTrait for &'a GeometryCollection<T> { | ||
type T = T; | ||
type ItemType<'b> = Geometry<Self::T> where |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's weird that this doesn't get modified with cargo fmt...
it looks like ci on the |
We've already bumped MSRV to 1.65 on main, so I think you'll need to manually bump MSRV for the new geo-traits for CI to pass. |
I'm confused; geo-traits is already set to 1.65 I thought: Line 10 in e952ed1
|
I pushed a commit. It was easier than explaining. Hope that's ok. 😅 |
oh I see, thanks! 🙂 |
I'm mostly impressed you were able to push! 😄 I've never figured out how to push to an incoming PR from a branch outside the main repo, even when |
Is this good to merge? 🙂 it's onto a separate branch anyways |
Yep! Go for it |
Do you have merge access? |
No I don't. |
How about now? |
Thanks! |
CHANGES.md
if knowledge of this change could be valuable to users.Change list
T
to be used as the coord typeRectTrait
I've been incubating traits in geoarrow-rs, so this matches the same PR I made there: geoarrow/geoarrow-rs#253, which also has updated trait implementations on WKB objects.