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
(제목이 너무 거창하군요 😱)
drop
&mut
Result
panic
ManuallyDrop
drop_in_place
Hafnium은 panic할 때 unwinding을 하지 않으므로 이 문제는 크게 관련이 없습니다. 하지만 유닛 테스트를 할 때는 panic strategy가 unwind라서 에러 메세지가 잘 나오지 않는 사소한 문제가 있습니다. ↩
The text was updated successfully, but these errors were encountered:
No branches or pull requests
(제목이 너무 거창하군요 😱)
이게 불완전하게 작동해서 스택이 터지고 (Stack-consuming ArrayVec #50),
drop
도 값 대신&mut
을 받습니다.Result
)를 할 수 없습니다.panic
을 하면 큰일납니다. 1ManuallyDrop
같은 걸 넣어야 합니다.drop_in_place
과 같은 기능이 유지되어야 하므로, pinned value을 인자로 줄 수 있는 call by value가 가능해야 합니다. 말은 했는데 이게 가능한건지는 잘 모르겠습니다.Footnotes
Hafnium은 panic할 때 unwinding을 하지 않으므로 이 문제는 크게 관련이 없습니다. 하지만 유닛 테스트를 할 때는 panic strategy가 unwind라서 에러 메세지가 잘 나오지 않는 사소한 문제가 있습니다. ↩
The text was updated successfully, but these errors were encountered: