pub struct ActixAdminViewModelParams {
pub page: Option<u64>,
pub entities_per_page: Option<u64>,
pub viewmodel_filter: Vec<ActixAdminViewModelFilter>,
pub search: String,
pub sort_by: String,
pub sort_order: SortOrder,
pub tenant_ref: Option<i32>,
}Fields§
§page: Option<u64>§entities_per_page: Option<u64>§viewmodel_filter: Vec<ActixAdminViewModelFilter>§search: String§sort_by: String§sort_order: SortOrder§tenant_ref: Option<i32>Auto Trait Implementations§
impl Freeze for ActixAdminViewModelParams
impl RefUnwindSafe for ActixAdminViewModelParams
impl Send for ActixAdminViewModelParams
impl Sync for ActixAdminViewModelParams
impl Unpin for ActixAdminViewModelParams
impl UnsafeUnpin for ActixAdminViewModelParams
impl UnwindSafe for ActixAdminViewModelParams
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more