We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Sized?
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
Otherwise the documentation is incorrectly stating that the trait, type parameters, etc are always sized.
Example: Deref
Deref
The trait definition should look like this:
pub trait Deref<Sized? Result> for Sized? { /* .. */ }
And the implementors section should look like this:
impl<'a, Sized? T> Deref<T> for &'a T impl<'a, Sized? T> Deref<T> for &'a mut T // ...
The text was updated successfully, but these errors were encountered:
Dup of #18515
Sorry, something went wrong.
Merge pull request rust-lang#19191 from Veykril/push-yzzlosskwrxs
286595e
Remove `limit` crate in favor `usize`
No branches or pull requests
Otherwise the documentation is incorrectly stating that the trait, type parameters, etc are always sized.
Example:
Deref
The trait definition should look like this:
And the implementors section should look like this:
The text was updated successfully, but these errors were encountered: