Enum syntax::ast::RangeLimits [−][src]
pub enum RangeLimits { HalfOpen, Closed, }
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Limit types of a range (inclusive or exclusive)
Variants
HalfOpen
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Inclusive at the beginning, exclusive at the end
Closed
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Inclusive at the beginning and end
Trait Implementations
impl Copy for RangeLimits
[src]
impl Copy for RangeLimits
impl Clone for RangeLimits
[src]
impl Clone for RangeLimits
fn clone(&self) -> RangeLimits
[src]
fn clone(&self) -> RangeLimits
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl PartialEq for RangeLimits
[src]
impl PartialEq for RangeLimits
fn eq(&self, other: &RangeLimits) -> bool
[src]
fn eq(&self, other: &RangeLimits) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl Encodable for RangeLimits
[src]
impl Encodable for RangeLimits
fn encode<__S: Encoder>(&self, s: &mut __S) -> Result<(), __S::Error>
[src]
fn encode<__S: Encoder>(&self, s: &mut __S) -> Result<(), __S::Error>
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
impl Decodable for RangeLimits
[src]
impl Decodable for RangeLimits
fn decode<__D: Decoder>(d: &mut __D) -> Result<RangeLimits, __D::Error>
[src]
fn decode<__D: Decoder>(d: &mut __D) -> Result<RangeLimits, __D::Error>
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
impl Debug for RangeLimits
[src]
impl Debug for RangeLimits
Auto Trait Implementations
impl Send for RangeLimits
impl Send for RangeLimits
impl Sync for RangeLimits
impl Sync for RangeLimits