We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The issue is due to sebcrozet/kiss3d#237. Please consider the following impls.
impl<'a, N, D> From<&'a Point<N, D>> for Cow<'a, Point<N, D>> impl<'a, N, D> From<Point<N, D>> for Cow<'a, Point<N, D>> impl<N, D> Borrow<Point<N, D>> for Point<N, D> impl<'a, N, D> From<&'a Point<N, D>> for Point<N, D>
It helps constructing the API without cloning data around. For example, we may have a function call accepting both owned and borrowed types.
fn add_point<'a>(p: impl Into<Cow<'a, Point3<f32>>>)
EDIT: grammar
The text was updated successfully, but these errors were encountered:
@sebcrozet Is this considered ?
Sorry, something went wrong.
No branches or pull requests
The issue is due to sebcrozet/kiss3d#237. Please consider the following impls.
It helps constructing the API without cloning data around. For example, we may have a function call accepting both owned and borrowed types.
EDIT: grammar
The text was updated successfully, but these errors were encountered: