pub struct JoinUnionMemberDirective {
    pub subgraph_id: SubgraphId,
    pub object_id: ObjectId,
}Expand description
ⓘ
 directive @join__unionMember(
     graph: join__Graph!,
     member: String!
 ) repeatable on UNIONFields§
§subgraph_id: SubgraphId§object_id: ObjectIdTrait Implementations§
Source§impl Clone for JoinUnionMemberDirective
 
impl Clone for JoinUnionMemberDirective
Source§fn clone(&self) -> JoinUnionMemberDirective
 
fn clone(&self) -> JoinUnionMemberDirective
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 JoinUnionMemberDirective
 
impl Debug for JoinUnionMemberDirective
Source§impl PartialEq for JoinUnionMemberDirective
 
impl PartialEq for JoinUnionMemberDirective
Source§impl PartialOrd for JoinUnionMemberDirective
 
impl PartialOrd for JoinUnionMemberDirective
impl StructuralPartialEq for JoinUnionMemberDirective
Auto Trait Implementations§
impl Freeze for JoinUnionMemberDirective
impl RefUnwindSafe for JoinUnionMemberDirective
impl Send for JoinUnionMemberDirective
impl Sync for JoinUnionMemberDirective
impl Unpin for JoinUnionMemberDirective
impl UnwindSafe for JoinUnionMemberDirective
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<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