- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 1 - 10 of 10 for host:doc.rust-lang.org (0.11 sec)
-
Shr in std::ops - Rust
The right shift operator `>>`. Note that because this trait is implemented for all integer types with multiple right-hand-side types, Rust’s type checker has special handling for `_ >> _`, setting the result type for integer operations to the type of the left-hand-side operand. This means that though `a >> b` and `a.shr(b)` are one and the same from an evaluation standpoint, they are different when it comes to type inference.doc.rust-lang.org/std/ops/trait.Shr.htmlRegistered: Wed Nov 05 02:35:22 UTC 2025 - Last Modified: Thu Oct 30 18:22:29 UTC 2025 - 934.2K bytes - Viewed (0) -
str - Rust
String slices.doc.rust-lang.org/std/primitive.str.htmlRegistered: Wed Nov 05 01:08:54 UTC 2025 - Last Modified: Thu Oct 30 18:22:30 UTC 2025 - 609.5K bytes - Viewed (0) -
ByteStr in std::bstr - Rust
A wrapper for `&[u8]` representing a human-readable string that’s conventionally, but not always, UTF-8.doc.rust-lang.org/std/bstr/struct.ByteStr.htmlRegistered: Wed Nov 05 01:25:44 UTC 2025 - Last Modified: Thu Oct 30 18:22:24 UTC 2025 - 747.5K bytes - Viewed (0) -
Box in std::boxed - Rust
A pointer type that uniquely owns a heap allocation of type `T`.doc.rust-lang.org/std/boxed/struct.Box.htmlRegistered: Wed Nov 05 01:27:45 UTC 2025 - Last Modified: Thu Oct 30 18:22:24 UTC 2025 - 624.9K bytes - Viewed (0) -
slice - Rust
A dynamically-sized view into a contiguous sequence, `[T]`.doc.rust-lang.org/std/primitive.slice.htmlRegistered: Wed Nov 05 01:09:00 UTC 2025 - Last Modified: Thu Oct 30 18:22:30 UTC 2025 - 923.3K bytes - Viewed (0) -
Vec in std::vec - Rust
A contiguous growable array type, written as `Vec<T>`, short for ‘vector’.doc.rust-lang.org/std/vec/struct.Vec.htmlRegistered: Wed Nov 05 01:05:44 UTC 2025 - Last Modified: Thu Oct 30 18:22:33 UTC 2025 - 861.5K bytes - Viewed (0) -
String in std::string - Rust
A UTF-8–encoded, growable string.doc.rust-lang.org/std/string/struct.String.htmlRegistered: Wed Nov 05 01:09:54 UTC 2025 - Last Modified: Thu Oct 30 18:22:32 UTC 2025 - 610.1K bytes - Viewed (0) -
ByteString in std::bstr - Rust
A wrapper for `Vec<u8>` representing a human-readable string that’s conventionally, but not always, UTF-8.doc.rust-lang.org/std/bstr/struct.ByteString.htmlRegistered: Wed Nov 05 01:26:48 UTC 2025 - Last Modified: Thu Oct 30 18:22:24 UTC 2025 - 781K bytes - Viewed (0) -
Shl in std::ops - Rust
The left shift operator `<<`. Note that because this trait is implemented for all integer types with multiple right-hand-side types, Rust’s type checker has special handling for `_ << _`, setting the result type for integer operations to the type of the left-hand-side operand. This means that though `a << b` and `a.shl(b)` are one and the same from an evaluation standpoint, they are different when it comes to type inference.doc.rust-lang.org/std/ops/trait.Shl.htmlRegistered: Wed Nov 05 02:36:23 UTC 2025 - Last Modified: Thu Oct 30 18:22:29 UTC 2025 - 934.1K bytes - Viewed (0) -
Iterator in std::iter - Rust
A trait for dealing with iterators.doc.rust-lang.org/std/iter/trait.Iterator.htmlRegistered: Wed Nov 05 01:07:44 UTC 2025 - Last Modified: Thu Oct 30 18:22:28 UTC 2025 - 673.5K bytes - Viewed (0)