Struct jyve::request::credentials_list::CredentialsListRequest
source · pub struct CredentialsListRequest<'a> {
pub archived_at_isnull: Option<String>,
pub ids: Option<String>,
pub page: Option<i64>,
pub page_size: Option<i64>,
pub types: Option<String>,
pub updated_at: Option<String>,
pub updated_at_gte: Option<String>,
/* private fields */
}
Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§archived_at_isnull: Option<String>
§ids: Option<String>
§page: Option<i64>
§page_size: Option<i64>
§types: Option<String>
§updated_at: Option<String>
§updated_at_gte: Option<String>
Implementations§
source§impl<'a> CredentialsListRequest<'a>
impl<'a> CredentialsListRequest<'a>
pub async fn send(self) -> InMemoryResult<Value>
pub fn archived_at_isnull(self, archived_at_isnull: &str) -> Self
pub fn ids(self, ids: &str) -> Self
pub fn page(self, page: i64) -> Self
pub fn page_size(self, page_size: i64) -> Self
pub fn types(self, types: &str) -> Self
pub fn updated_at(self, updated_at: &str) -> Self
pub fn updated_at_gte(self, updated_at_gte: &str) -> Self
Trait Implementations§
source§impl<'a> Clone for CredentialsListRequest<'a>
impl<'a> Clone for CredentialsListRequest<'a>
source§fn clone(&self) -> CredentialsListRequest<'a>
fn clone(&self) -> CredentialsListRequest<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a> IntoFuture for CredentialsListRequest<'a>
impl<'a> IntoFuture for CredentialsListRequest<'a>
§type Output = Result<Value, Error<Response<InMemoryBody>>>
type Output = Result<Value, Error<Response<InMemoryBody>>>
The output that the future will produce on completion.
§type IntoFuture = Pin<Box<dyn Future<Output = <CredentialsListRequest<'a> as IntoFuture>::Output> + Send + 'a, Global>>
type IntoFuture = Pin<Box<dyn Future<Output = <CredentialsListRequest<'a> as IntoFuture>::Output> + Send + 'a, Global>>
Which kind of future are we turning this into?
source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for CredentialsListRequest<'a>
impl<'a> Send for CredentialsListRequest<'a>
impl<'a> Sync for CredentialsListRequest<'a>
impl<'a> Unpin for CredentialsListRequest<'a>
impl<'a> !UnwindSafe for CredentialsListRequest<'a>
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