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
A few functions take &[T] where T: Into<NodeId>. The intent is to support client code working with tsk_id_t, but the trait bound in unsound. It is possible for a type to implement Into<NodeId> but not have the same ABI as NodeId.
The text was updated successfully, but these errors were encountered:
A few functions take
&[T] where T: Into<NodeId>
. The intent is to support client code working withtsk_id_t
, but the trait bound in unsound. It is possible for a type to implementInto<NodeId>
but not have the same ABI asNodeId
.The text was updated successfully, but these errors were encountered: