Struct ex3_node_types::range::CandidRange

source ·
pub struct CandidRange<Idx: CandidType> {
    pub start: Idx,
    pub end: Idx,
}

Fields§

§start: Idx§end: Idx

Implementations§

source§

impl<Idx: PartialOrd<Idx> + CandidType> CandidRange<Idx>

source

pub fn contains<U>(&self, item: &U) -> bool
where Idx: PartialOrd<U>, U: ?Sized + PartialOrd<Idx>,

source

pub fn is_empty(&self) -> bool

Trait Implementations§

source§

impl<Idx: CandidType + CandidType> CandidType for CandidRange<Idx>

source§

fn _ty() -> Type

source§

fn id() -> TypeId

source§

fn idl_serialize<__S>(&self, __serializer: __S) -> Result<(), __S::Error>
where __S: Serializer,

source§

fn ty() -> Type

source§

impl<Idx: Clone + CandidType> Clone for CandidRange<Idx>

source§

fn clone(&self) -> CandidRange<Idx>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Idx: Debug + CandidType> Debug for CandidRange<Idx>

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<Idx: Default + CandidType> Default for CandidRange<Idx>

source§

fn default() -> CandidRange<Idx>

Returns the “default value” for a type. Read more
source§

impl<'de, Idx> Deserialize<'de> for CandidRange<Idx>
where Idx: Deserialize<'de> + CandidType,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<Idx, Idx2> From<CandidRange<Idx>> for Range<Idx2>
where Idx: Into<Idx2> + PartialOrd<Idx> + CandidType,

source§

fn from(range: CandidRange<Idx>) -> Self

Converts to this type from the input type.
source§

impl<Idx, Idx2: PartialOrd<Idx> + CandidType> From<Range<Idx>> for CandidRange<Idx2>
where Idx: Into<Idx2>,

source§

fn from(range: Range<Idx>) -> Self

Converts to this type from the input type.
source§

impl<Idx: Hash + CandidType> Hash for CandidRange<Idx>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<Idx: PartialEq + CandidType> PartialEq for CandidRange<Idx>

source§

fn eq(&self, other: &CandidRange<Idx>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<Idx: PartialOrd<Idx> + CandidType> RangeBounds<Idx> for CandidRange<Idx>

source§

fn start_bound(&self) -> Bound<&Idx>

Start index bound. Read more
source§

fn end_bound(&self) -> Bound<&Idx>

End index bound. Read more
1.35.0 · source§

fn contains<U>(&self, item: &U) -> bool
where T: PartialOrd<U>, U: PartialOrd<T> + ?Sized,

Returns true if item is contained in the range. Read more
source§

impl<Idx> Serialize for CandidRange<Idx>
where Idx: Serialize + CandidType,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<Idx: Copy + CandidType> Copy for CandidRange<Idx>

source§

impl<Idx: Eq + CandidType> Eq for CandidRange<Idx>

source§

impl<Idx: CandidType> StructuralPartialEq for CandidRange<Idx>

Auto Trait Implementations§

§

impl<Idx> Freeze for CandidRange<Idx>
where Idx: Freeze,

§

impl<Idx> RefUnwindSafe for CandidRange<Idx>
where Idx: RefUnwindSafe,

§

impl<Idx> Send for CandidRange<Idx>
where Idx: Send,

§

impl<Idx> Sync for CandidRange<Idx>
where Idx: Sync,

§

impl<Idx> Unpin for CandidRange<Idx>
where Idx: Unpin,

§

impl<Idx> UnwindSafe for CandidRange<Idx>
where Idx: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> CloneToUninit for T
where T: Copy,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,