Struct google_api_proto::google::example::library::v1::library_service_client::LibraryServiceClient
source · pub struct LibraryServiceClient<T> { /* private fields */ }
Expand description
This API represents a simple digital library. It lets you manage Shelf resources and Book resources in the library. It defines the following resource model:
-
The API has a collection of [Shelf][google.example.library.v1.Shelf] resources, named
shelves/*
-
Each Shelf has a collection of [Book][google.example.library.v1.Book] resources, named
shelves/*/books/*
Implementations§
source§impl<T> LibraryServiceClient<T>where
T: GrpcService<BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
impl<T> LibraryServiceClient<T>where
T: GrpcService<BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
pub fn new(inner: T) -> Self
pub fn with_origin(inner: T, origin: Uri) -> Self
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> LibraryServiceClient<InterceptedService<T, F>>where
F: Interceptor,
T::ResponseBody: Default,
T: Service<Request<BoxBody>, Response = Response<<T as GrpcService<BoxBody>>::ResponseBody>>,
<T as Service<Request<BoxBody>>>::Error: Into<StdError> + Send + Sync,
sourcepub fn send_compressed(self, encoding: CompressionEncoding) -> Self
pub fn send_compressed(self, encoding: CompressionEncoding) -> Self
Compress requests with the given encoding.
This requires the server to support it otherwise it might respond with an error.
sourcepub fn accept_compressed(self, encoding: CompressionEncoding) -> Self
pub fn accept_compressed(self, encoding: CompressionEncoding) -> Self
Enable decompressing responses.
sourcepub fn max_decoding_message_size(self, limit: usize) -> Self
pub fn max_decoding_message_size(self, limit: usize) -> Self
Limits the maximum size of a decoded message.
Default: 4MB
sourcepub fn max_encoding_message_size(self, limit: usize) -> Self
pub fn max_encoding_message_size(self, limit: usize) -> Self
Limits the maximum size of an encoded message.
Default: usize::MAX
sourcepub async fn create_shelf(
&mut self,
request: impl IntoRequest<CreateShelfRequest>,
) -> Result<Response<Shelf>, Status>
pub async fn create_shelf( &mut self, request: impl IntoRequest<CreateShelfRequest>, ) -> Result<Response<Shelf>, Status>
Creates a shelf, and returns the new Shelf.
sourcepub async fn get_shelf(
&mut self,
request: impl IntoRequest<GetShelfRequest>,
) -> Result<Response<Shelf>, Status>
pub async fn get_shelf( &mut self, request: impl IntoRequest<GetShelfRequest>, ) -> Result<Response<Shelf>, Status>
Gets a shelf. Returns NOT_FOUND if the shelf does not exist.
sourcepub async fn list_shelves(
&mut self,
request: impl IntoRequest<ListShelvesRequest>,
) -> Result<Response<ListShelvesResponse>, Status>
pub async fn list_shelves( &mut self, request: impl IntoRequest<ListShelvesRequest>, ) -> Result<Response<ListShelvesResponse>, Status>
Lists shelves. The order is unspecified but deterministic. Newly created shelves will not necessarily be added to the end of this list.
sourcepub async fn delete_shelf(
&mut self,
request: impl IntoRequest<DeleteShelfRequest>,
) -> Result<Response<()>, Status>
pub async fn delete_shelf( &mut self, request: impl IntoRequest<DeleteShelfRequest>, ) -> Result<Response<()>, Status>
Deletes a shelf. Returns NOT_FOUND if the shelf does not exist.
sourcepub async fn merge_shelves(
&mut self,
request: impl IntoRequest<MergeShelvesRequest>,
) -> Result<Response<Shelf>, Status>
pub async fn merge_shelves( &mut self, request: impl IntoRequest<MergeShelvesRequest>, ) -> Result<Response<Shelf>, Status>
Merges two shelves by adding all books from the shelf named
other_shelf_name
to shelf name
, and deletes
other_shelf_name
. Returns the updated shelf.
The book ids of the moved books may not be the same as the original books.
Returns NOT_FOUND if either shelf does not exist. This call is a no-op if the specified shelves are the same.
sourcepub async fn create_book(
&mut self,
request: impl IntoRequest<CreateBookRequest>,
) -> Result<Response<Book>, Status>
pub async fn create_book( &mut self, request: impl IntoRequest<CreateBookRequest>, ) -> Result<Response<Book>, Status>
Creates a book, and returns the new Book.
sourcepub async fn get_book(
&mut self,
request: impl IntoRequest<GetBookRequest>,
) -> Result<Response<Book>, Status>
pub async fn get_book( &mut self, request: impl IntoRequest<GetBookRequest>, ) -> Result<Response<Book>, Status>
Gets a book. Returns NOT_FOUND if the book does not exist.
sourcepub async fn list_books(
&mut self,
request: impl IntoRequest<ListBooksRequest>,
) -> Result<Response<ListBooksResponse>, Status>
pub async fn list_books( &mut self, request: impl IntoRequest<ListBooksRequest>, ) -> Result<Response<ListBooksResponse>, Status>
Lists books in a shelf. The order is unspecified but deterministic. Newly created books will not necessarily be added to the end of this list. Returns NOT_FOUND if the shelf does not exist.
sourcepub async fn delete_book(
&mut self,
request: impl IntoRequest<DeleteBookRequest>,
) -> Result<Response<()>, Status>
pub async fn delete_book( &mut self, request: impl IntoRequest<DeleteBookRequest>, ) -> Result<Response<()>, Status>
Deletes a book. Returns NOT_FOUND if the book does not exist.
sourcepub async fn update_book(
&mut self,
request: impl IntoRequest<UpdateBookRequest>,
) -> Result<Response<Book>, Status>
pub async fn update_book( &mut self, request: impl IntoRequest<UpdateBookRequest>, ) -> Result<Response<Book>, Status>
Updates a book. Returns INVALID_ARGUMENT if the name of the book is non-empty and does not equal the existing name.
sourcepub async fn move_book(
&mut self,
request: impl IntoRequest<MoveBookRequest>,
) -> Result<Response<Book>, Status>
pub async fn move_book( &mut self, request: impl IntoRequest<MoveBookRequest>, ) -> Result<Response<Book>, Status>
Moves a book to another shelf, and returns the new book. The book id of the new book may not be the same as the original book.
Trait Implementations§
source§impl<T: Clone> Clone for LibraryServiceClient<T>
impl<T: Clone> Clone for LibraryServiceClient<T>
source§fn clone(&self) -> LibraryServiceClient<T>
fn clone(&self) -> LibraryServiceClient<T>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl<T> !Freeze for LibraryServiceClient<T>
impl<T> RefUnwindSafe for LibraryServiceClient<T>where
T: RefUnwindSafe,
impl<T> Send for LibraryServiceClient<T>where
T: Send,
impl<T> Sync for LibraryServiceClient<T>where
T: Sync,
impl<T> Unpin for LibraryServiceClient<T>where
T: Unpin,
impl<T> UnwindSafe for LibraryServiceClient<T>where
T: UnwindSafe,
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request