pub struct ListProjectUsersQueryArgs { /* private fields */ }Available on crate feature
administration-types only.Expand description
Builder for ListProjectUsersQuery.
Implementations§
Source§impl ListProjectUsersQueryArgs
impl ListProjectUsersQueryArgs
Sourcepub fn limit<VALUE: Into<u32>>(&mut self, value: VALUE) -> &mut Self
pub fn limit<VALUE: Into<u32>>(&mut self, value: VALUE) -> &mut Self
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.
Sourcepub fn after<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn after<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
A cursor for use in pagination. after is an object ID that defines your place in the
list.
Sourcepub fn build(&self) -> Result<ListProjectUsersQuery, OpenAIError>
pub fn build(&self) -> Result<ListProjectUsersQuery, OpenAIError>
Trait Implementations§
Source§impl Clone for ListProjectUsersQueryArgs
impl Clone for ListProjectUsersQueryArgs
Source§fn clone(&self) -> ListProjectUsersQueryArgs
fn clone(&self) -> ListProjectUsersQueryArgs
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ListProjectUsersQueryArgs
impl Debug for ListProjectUsersQueryArgs
Auto Trait Implementations§
impl Freeze for ListProjectUsersQueryArgs
impl RefUnwindSafe for ListProjectUsersQueryArgs
impl Send for ListProjectUsersQueryArgs
impl Sync for ListProjectUsersQueryArgs
impl Unpin for ListProjectUsersQueryArgs
impl UnsafeUnpin for ListProjectUsersQueryArgs
impl UnwindSafe for ListProjectUsersQueryArgs
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