pub struct InputObjectId(/* private fields */);
Implementations§
Source§impl InputObjectId
impl InputObjectId
pub const fn const_from_usize(i: usize) -> Self
Trait Implementations§
Source§impl Clone for InputObjectId
impl Clone for InputObjectId
Source§fn clone(&self) -> InputObjectId
fn clone(&self) -> InputObjectId
Returns a copy 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 InputObjectId
impl Debug for InputObjectId
Source§impl<'de> Deserialize<'de> for InputObjectId
impl<'de> Deserialize<'de> for InputObjectId
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<InputObjectId> for usize
impl From<InputObjectId> for usize
Source§fn from(value: InputObjectId) -> usize
fn from(value: InputObjectId) -> usize
Converts to this type from the input type.
Source§impl From<usize> for InputObjectId
impl From<usize> for InputObjectId
Source§fn from(value: usize) -> InputObjectId
fn from(value: usize) -> InputObjectId
Converts to this type from the input type.
Source§impl Hash for InputObjectId
impl Hash for InputObjectId
Source§impl Index<InputObjectId> for FederatedGraph
impl Index<InputObjectId> for FederatedGraph
Source§type Output = InputObject
type Output = InputObject
The returned type after indexing.
Source§fn index(&self, index: InputObjectId) -> &InputObject
fn index(&self, index: InputObjectId) -> &InputObject
Performs the indexing (
container[index]
) operation. Read moreSource§impl IndexMut<InputObjectId> for FederatedGraph
impl IndexMut<InputObjectId> for FederatedGraph
Source§fn index_mut(&mut self, index: InputObjectId) -> &mut InputObject
fn index_mut(&mut self, index: InputObjectId) -> &mut InputObject
Performs the mutable indexing (
container[index]
) operation. Read moreSource§impl Ord for InputObjectId
impl Ord for InputObjectId
Source§fn cmp(&self, other: &InputObjectId) -> Ordering
fn cmp(&self, other: &InputObjectId) -> 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 InputObjectId
impl PartialEq for InputObjectId
Source§impl PartialOrd for InputObjectId
impl PartialOrd for InputObjectId
Source§impl Serialize for InputObjectId
impl Serialize for InputObjectId
impl Copy for InputObjectId
impl Eq for InputObjectId
impl StructuralPartialEq for InputObjectId
Auto Trait Implementations§
impl Freeze for InputObjectId
impl RefUnwindSafe for InputObjectId
impl Send for InputObjectId
impl Sync for InputObjectId
impl Unpin for InputObjectId
impl UnwindSafe for InputObjectId
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