13 lines
272 B
Rust
13 lines
272 B
Rust
![]() |
// Local types overriding the stdlib Send should not affect generated code
|
||
|
|
||
|
trait Send {}
|
||
|
|
||
|
#[derive(juniper::GraphQLInputObject)]
|
||
|
#[graphql(name = "UserInformation")]
|
||
|
pub struct Update {
|
||
|
pub email: Option<String>,
|
||
|
pub username: Option<String>,
|
||
|
}
|
||
|
|
||
|
pub fn main() {}
|