pub struct FetchAllUserResourceRequest<'a> {
pub start_index: Option<f64>,
pub count: Option<f64>,
pub filter: 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§
§start_index: Option<f64>
§count: Option<f64>
§filter: Option<String>
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for FetchAllUserResourceRequest<'a>
impl<'a> !RefUnwindSafe for FetchAllUserResourceRequest<'a>
impl<'a> Send for FetchAllUserResourceRequest<'a>
impl<'a> Sync for FetchAllUserResourceRequest<'a>
impl<'a> Unpin for FetchAllUserResourceRequest<'a>
impl<'a> !UnwindSafe for FetchAllUserResourceRequest<'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