pub struct GetDevices;
Expand description
Query, which retrieves a list of devices. You can use this to get the IDs of devices, for example for starting scripting jobs.
Trait Implementations§
Source§impl GraphQLQuery for GetDevices
impl GraphQLQuery for GetDevices
Source§type Variables = Variables
type Variables = Variables
The shape of the variables expected by the query. This should be a generated struct most of the time.
Source§type ResponseData = ResponseData
type ResponseData = ResponseData
The top-level shape of the response data (the
data
field in the GraphQL response). In practice this should be generated, since it is hard to write by hand without error.Auto Trait Implementations§
impl Freeze for GetDevices
impl RefUnwindSafe for GetDevices
impl Send for GetDevices
impl Sync for GetDevices
impl Unpin for GetDevices
impl UnwindSafe for GetDevices
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