pub struct UsersQueryBuilder<'a> { /* private fields */ }Expand description
Query builder: All users for the organization.
Use setter methods to configure optional parameters, then call
.send() to execute the query.
Implementations§
Source§impl<'a> UsersQueryBuilder<'a>
impl<'a> UsersQueryBuilder<'a>
pub fn filter(self, value: UserFilter) -> Self
pub fn include_disabled(self, value: bool) -> Self
pub fn before(self, value: impl Into<String>) -> Self
pub fn after(self, value: impl Into<String>) -> Self
pub fn first(self, value: i64) -> Self
pub fn last(self, value: i64) -> Self
pub fn include_archived(self, value: bool) -> Self
pub fn order_by(self, value: PaginationOrderBy) -> Self
pub fn sort(self, value: UserSortInput) -> Self
pub async fn send(self) -> Result<Connection<User>, LinearError>
Auto Trait Implementations§
impl<'a> Freeze for UsersQueryBuilder<'a>
impl<'a> !RefUnwindSafe for UsersQueryBuilder<'a>
impl<'a> Send for UsersQueryBuilder<'a>
impl<'a> Sync for UsersQueryBuilder<'a>
impl<'a> Unpin for UsersQueryBuilder<'a>
impl<'a> !UnwindSafe for UsersQueryBuilder<'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