pub struct UsersEndpoint { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl Clone for UsersEndpoint
impl Clone for UsersEndpoint
Source§fn clone(&self) -> UsersEndpoint
fn clone(&self) -> UsersEndpoint
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UsersEndpoint
impl Debug for UsersEndpoint
Source§impl Endpoint for UsersEndpoint
impl Endpoint for UsersEndpoint
type RenderRequestError = UsersEndpointError
type ParseResponseOutput = Users
type ParseResponseError = UsersEndpointError
fn render_request(&self) -> Result<Request<Body>, Self::RenderRequestError>
fn parse_response( &self, response: Response<Body>, ) -> Result<Self::ParseResponseOutput, Self::ParseResponseError>
Auto Trait Implementations§
impl Freeze for UsersEndpoint
impl RefUnwindSafe for UsersEndpoint
impl Send for UsersEndpoint
impl Sync for UsersEndpoint
impl Unpin for UsersEndpoint
impl UnwindSafe for UsersEndpoint
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