Struct gapi_grpc::google::home::enterprise::sdm::v1::ListDevicesRequest[][src]

pub struct ListDevicesRequest {
    pub parent: String,
    pub page_size: i32,
    pub page_token: String,
    pub filter: String,
}

Request message for SmartDeviceManagementService.ListDevices

Fields

parent: String

The parent enterprise to list devices under. E.g. “enterprises/XYZ”.

page_size: i32

Optional requested page size. Server may return fewer devices than requested. If unspecified, server will pick an appropriate default.

page_token: String

Optional token of the page to retrieve.

filter: String

Optional filter to list devices.

Filters can match the exact parent (could be a structure or a room): ‘parent=enterprises/XYZ/structures/jkl’ or filter by device custom name (substring match): ‘customName=wing’

Trait Implementations

impl Clone for ListDevicesRequest[src]

impl Debug for ListDevicesRequest[src]

impl Default for ListDevicesRequest[src]

impl Message for ListDevicesRequest[src]

impl PartialEq<ListDevicesRequest> for ListDevicesRequest[src]

impl StructuralPartialEq for ListDevicesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListDevicesRequest

impl Send for ListDevicesRequest

impl Sync for ListDevicesRequest

impl Unpin for ListDevicesRequest

impl UnwindSafe for ListDevicesRequest

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]