Struct gapi_grpc::grafeas::v1::ListNotesRequest[][src]

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

Request to list notes.

Fields

parent: String

The name of the project to list notes for in the form of projects/[PROJECT_ID].

filter: String

The filter expression.

page_size: i32

Number of notes to return in the list. Must be positive. Max allowed page size is 1000. If not specified, page size defaults to 20.

page_token: String

Token to provide to skip to a particular spot in the list.

Trait Implementations

impl Clone for ListNotesRequest[src]

impl Debug for ListNotesRequest[src]

impl Default for ListNotesRequest[src]

impl Message for ListNotesRequest[src]

impl PartialEq<ListNotesRequest> for ListNotesRequest[src]

impl StructuralPartialEq for ListNotesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListNotesRequest

impl Send for ListNotesRequest

impl Sync for ListNotesRequest

impl Unpin for ListNotesRequest

impl UnwindSafe for ListNotesRequest

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]