pub struct ListDevicesResponse {
pub errors: Option<Vec<Error>>,
pub devices: Option<Vec<Device>>,
pub cursor: Option<String>,
}Fields§
§errors: Option<Vec<Error>>Information about errors that occurred during the request.
devices: Option<Vec<Device>>The requested list of Device objects.
cursor: Option<String>The pagination cursor to be used in a subsequent request. If empty, this is the final response. See Pagination for more information.
Implementations§
Source§impl ListDevicesResponse
impl ListDevicesResponse
pub fn new() -> ListDevicesResponse
Trait Implementations§
Source§impl Clone for ListDevicesResponse
impl Clone for ListDevicesResponse
Source§fn clone(&self) -> ListDevicesResponse
fn clone(&self) -> ListDevicesResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListDevicesResponse
impl Debug for ListDevicesResponse
Source§impl Default for ListDevicesResponse
impl Default for ListDevicesResponse
Source§fn default() -> ListDevicesResponse
fn default() -> ListDevicesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListDevicesResponse
impl<'de> Deserialize<'de> for ListDevicesResponse
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 PartialEq for ListDevicesResponse
impl PartialEq for ListDevicesResponse
Source§impl Serialize for ListDevicesResponse
impl Serialize for ListDevicesResponse
impl StructuralPartialEq for ListDevicesResponse
Auto Trait Implementations§
impl Freeze for ListDevicesResponse
impl RefUnwindSafe for ListDevicesResponse
impl Send for ListDevicesResponse
impl Sync for ListDevicesResponse
impl Unpin for ListDevicesResponse
impl UnsafeUnpin for ListDevicesResponse
impl UnwindSafe for ListDevicesResponse
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