pub struct InputValueDefinitionId(/* private fields */);
Implementations§
Source§impl InputValueDefinitionId
impl InputValueDefinitionId
pub const fn const_from_usize(i: usize) -> Self
Trait Implementations§
Source§impl Clone for InputValueDefinitionId
impl Clone for InputValueDefinitionId
Source§fn clone(&self) -> InputValueDefinitionId
fn clone(&self) -> InputValueDefinitionId
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InputValueDefinitionId
impl Debug for InputValueDefinitionId
Source§impl<'de> Deserialize<'de> for InputValueDefinitionId
impl<'de> Deserialize<'de> for InputValueDefinitionId
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 From<InputValueDefinitionId> for usize
impl From<InputValueDefinitionId> for usize
Source§fn from(value: InputValueDefinitionId) -> usize
fn from(value: InputValueDefinitionId) -> usize
Converts to this type from the input type.
Source§impl From<usize> for InputValueDefinitionId
impl From<usize> for InputValueDefinitionId
Source§fn from(value: usize) -> InputValueDefinitionId
fn from(value: usize) -> InputValueDefinitionId
Converts to this type from the input type.
Source§impl Hash for InputValueDefinitionId
impl Hash for InputValueDefinitionId
Source§impl Index<InputValueDefinitionId> for FederatedGraph
impl Index<InputValueDefinitionId> for FederatedGraph
Source§type Output = InputValueDefinition
type Output = InputValueDefinition
The returned type after indexing.
Source§fn index(&self, index: InputValueDefinitionId) -> &InputValueDefinition
fn index(&self, index: InputValueDefinitionId) -> &InputValueDefinition
Performs the indexing (
container[index]
) operation. Read moreSource§impl IndexMut<InputValueDefinitionId> for FederatedGraph
impl IndexMut<InputValueDefinitionId> for FederatedGraph
Source§fn index_mut(
&mut self,
index: InputValueDefinitionId,
) -> &mut InputValueDefinition
fn index_mut( &mut self, index: InputValueDefinitionId, ) -> &mut InputValueDefinition
Performs the mutable indexing (
container[index]
) operation. Read moreSource§impl Ord for InputValueDefinitionId
impl Ord for InputValueDefinitionId
Source§fn cmp(&self, other: &InputValueDefinitionId) -> Ordering
fn cmp(&self, other: &InputValueDefinitionId) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for InputValueDefinitionId
impl PartialEq for InputValueDefinitionId
Source§impl PartialOrd for InputValueDefinitionId
impl PartialOrd for InputValueDefinitionId
Source§impl Serialize for InputValueDefinitionId
impl Serialize for InputValueDefinitionId
impl Copy for InputValueDefinitionId
impl Eq for InputValueDefinitionId
impl StructuralPartialEq for InputValueDefinitionId
Auto Trait Implementations§
impl Freeze for InputValueDefinitionId
impl RefUnwindSafe for InputValueDefinitionId
impl Send for InputValueDefinitionId
impl Sync for InputValueDefinitionId
impl Unpin for InputValueDefinitionId
impl UnwindSafe for InputValueDefinitionId
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more