Struct nexus_rs::response::Response [] [src]

pub struct Response<'a, T> {
    pub client: &'a Client,
    pub item: T,
}

Fields

Methods

impl<'a> Response<'a, ContentMetadata>
[src]

impl<'a> Response<'a, Repository>
[src]

Trait Implementations

impl<'a, T: Clone> Clone for Response<'a, T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a, T: Debug> Debug for Response<'a, T>
[src]

Formats the value using the given formatter.

impl<'a, T> Deref for Response<'a, T>
[src]

The resulting type after dereferencing

The method called to dereference a value

impl<'a, T: PartialEq> PartialEq for Response<'a, T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'a, T> Into<Vec<Response<'a, T>>> for Response<'a, Vec<T>>
[src]

Performs the conversion.

impl<'a, T> IntoIterator for Response<'a, Vec<T>>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more