pub struct ModelViewSet<M, S>where
M: Model + Serialize + DeserializeOwned + Clone + Send + Sync + 'static,
S: Send + Sync + 'static,{ /* private fields */ }native only.Expand description
ModelViewSet - combines all CRUD mixins, backed by a real
ModelViewSetHandler for database-backed CRUD.
Similar to Django REST Framework’s ModelViewSet but built around Rust
type composition. dispatch() routes the standard REST verbs to the
embedded handler’s list / retrieve / create / update / destroy
methods, so registering a ModelViewSet with a router yields actual
model-backed responses (not placeholders).
Implementations§
Source§impl<M, S> ModelViewSet<M, S>
impl<M, S> ModelViewSet<M, S>
Sourcepub fn new(basename: impl Into<String>) -> ModelViewSet<M, S>
pub fn new(basename: impl Into<String>) -> ModelViewSet<M, S>
Creates a new ModelViewSet with the given basename.
§Examples
use reinhardt_views::viewsets::{ModelViewSet, ViewSet};
use reinhardt_db::prelude::Model;
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Clone, Debug)]
struct User {
id: Option<i64>,
username: String,
}
#[derive(Clone)]
struct UserFields;
impl reinhardt_db::orm::FieldSelector for UserFields {
fn with_alias(self, _alias: &str) -> Self { self }
}
impl Model for User {
type PrimaryKey = i64;
type Fields = UserFields;
fn table_name() -> &'static str { "users" }
fn primary_key(&self) -> Option<Self::PrimaryKey> { self.id }
fn set_primary_key(&mut self, value: Self::PrimaryKey) { self.id = Some(value); }
fn new_fields() -> Self::Fields { UserFields }
}
let viewset = ModelViewSet::<User, reinhardt_rest::serializers::JsonSerializer<User>>::new("users");
assert_eq!(viewset.get_basename(), "users");Sourcepub fn with_lookup_field(self, field: impl Into<String>) -> ModelViewSet<M, S>
pub fn with_lookup_field(self, field: impl Into<String>) -> ModelViewSet<M, S>
Set custom lookup field for this ViewSet
§Examples
use reinhardt_views::viewsets::{ModelViewSet, ViewSet};
use reinhardt_db::prelude::Model;
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Clone, Debug)]
struct User {
id: Option<i64>,
username: String,
}
#[derive(Clone)]
struct UserFields;
impl reinhardt_db::orm::FieldSelector for UserFields {
fn with_alias(self, _alias: &str) -> Self { self }
}
impl Model for User {
type PrimaryKey = i64;
type Fields = UserFields;
fn table_name() -> &'static str { "users" }
fn primary_key(&self) -> Option<Self::PrimaryKey> { self.id }
fn set_primary_key(&mut self, value: Self::PrimaryKey) { self.id = Some(value); }
fn new_fields() -> Self::Fields { UserFields }
}
let viewset = ModelViewSet::<User, ()>::new("users")
.with_lookup_field("username");
assert_eq!(viewset.get_lookup_field(), "username");Sourcepub fn with_pagination(self, config: PaginationConfig) -> ModelViewSet<M, S>
pub fn with_pagination(self, config: PaginationConfig) -> ModelViewSet<M, S>
Set pagination configuration for this ViewSet
§Examples
// Page number pagination with custom page size
let viewset = ModelViewSet::<Item, ()>::new("items")
.with_pagination(PaginationConfig::page_number(20, Some(100)));
// Limit/offset pagination
let viewset = ModelViewSet::<Item, ()>::new("items")
.with_pagination(PaginationConfig::limit_offset(25, Some(500)));
// Disable pagination
let viewset = ModelViewSet::<Item, ()>::new("items")
.with_pagination(PaginationConfig::none());Sourcepub fn without_pagination(self) -> ModelViewSet<M, S>
pub fn without_pagination(self) -> ModelViewSet<M, S>
Disable pagination for this ViewSet
§Examples
let viewset = ModelViewSet::<Item, ()>::new("items")
.without_pagination();Sourcepub fn with_filters(self, config: FilterConfig) -> ModelViewSet<M, S>
pub fn with_filters(self, config: FilterConfig) -> ModelViewSet<M, S>
Set filter configuration for this ViewSet
§Examples
let viewset = ModelViewSet::<Item, ()>::new("items")
.with_filters(
FilterConfig::new()
.with_filterable_fields(vec!["status", "category"])
.with_search_fields(vec!["title", "description"])
);Sourcepub fn with_ordering(self, config: OrderingConfig) -> ModelViewSet<M, S>
pub fn with_ordering(self, config: OrderingConfig) -> ModelViewSet<M, S>
Set ordering configuration for this ViewSet
§Examples
let viewset = ModelViewSet::<Item, ()>::new("items")
.with_ordering(
OrderingConfig::new()
.with_ordering_fields(vec!["created_at", "title", "id"])
.with_default_ordering(vec!["-created_at"])
);Sourcepub fn with_pool(self, pool: Arc<Pool<Any>>) -> ModelViewSet<M, S>
pub fn with_pool(self, pool: Arc<Pool<Any>>) -> ModelViewSet<M, S>
Set the database connection pool used by CRUD handlers.
Without a pool, list/retrieve fall back to the in-memory queryset (if any), and create/update/destroy will operate only on the queryset.
Sourcepub fn with_db_backend(self, backend: DbBackend) -> ModelViewSet<M, S>
pub fn with_db_backend(self, backend: DbBackend) -> ModelViewSet<M, S>
Set the database backend type (PostgreSQL, MySQL, SQLite).
Sourcepub fn with_serializer(
self,
serializer: Arc<dyn Serializer<Output = String, Input = M> + Send + Sync>,
) -> ModelViewSet<M, S>
pub fn with_serializer( self, serializer: Arc<dyn Serializer<Output = String, Input = M> + Send + Sync>, ) -> ModelViewSet<M, S>
Set a custom serializer used by CRUD handlers.
Sourcepub fn with_queryset(self, items: Vec<M>) -> ModelViewSet<M, S>
pub fn with_queryset(self, items: Vec<M>) -> ModelViewSet<M, S>
Provide an in-memory queryset used when no database pool is set.
Sourcepub fn add_permission(
self,
permission: Arc<dyn Permission>,
) -> ModelViewSet<M, S>
pub fn add_permission( self, permission: Arc<dyn Permission>, ) -> ModelViewSet<M, S>
Add a permission class enforced before each request.
Sourcepub fn add_filter_backend(
self,
backend: Arc<dyn FilterBackend>,
) -> ModelViewSet<M, S>
pub fn add_filter_backend( self, backend: Arc<dyn FilterBackend>, ) -> ModelViewSet<M, S>
Add a filter backend applied to list requests.
Sourcepub fn as_view(self) -> ViewSetBuilder<ModelViewSet<M, S>>
pub fn as_view(self) -> ViewSetBuilder<ModelViewSet<M, S>>
Convert ViewSet to Handler with action mapping Returns a ViewSetBuilder for configuration
Trait Implementations§
Source§impl<M, S> FilterableViewSet for ModelViewSet<M, S>
impl<M, S> FilterableViewSet for ModelViewSet<M, S>
Source§fn get_filter_config(&self) -> Option<FilterConfig>
fn get_filter_config(&self) -> Option<FilterConfig>
Source§fn get_ordering_config(&self) -> Option<OrderingConfig>
fn get_ordering_config(&self) -> Option<OrderingConfig>
Source§fn extract_filters(&self, request: &Request) -> HashMap<String, String>
fn extract_filters(&self, request: &Request) -> HashMap<String, String>
Source§impl<M, S> PaginatedViewSet for ModelViewSet<M, S>
impl<M, S> PaginatedViewSet for ModelViewSet<M, S>
Source§fn get_pagination_config(&self) -> Option<PaginationConfig>
fn get_pagination_config(&self) -> Option<PaginationConfig>
Source§impl<M, S> ViewSet for ModelViewSet<M, S>
impl<M, S> ViewSet for ModelViewSet<M, S>
Source§fn get_basename(&self) -> &str
fn get_basename(&self) -> &str
Source§fn get_lookup_field(&self) -> &str
fn get_lookup_field(&self) -> &str
Source§fn dispatch<'life0, 'async_trait>(
&'life0 self,
request: Request,
action: Action,
) -> Pin<Box<dyn Future<Output = Result<Response, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
ModelViewSet<M, S>: 'async_trait,
fn dispatch<'life0, 'async_trait>(
&'life0 self,
request: Request,
action: Action,
) -> Pin<Box<dyn Future<Output = Result<Response, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
ModelViewSet<M, S>: 'async_trait,
Source§fn get_extra_actions(&self) -> Vec<ActionMetadata>
fn get_extra_actions(&self) -> Vec<ActionMetadata>
Source§fn get_extra_action_url_map(&self) -> HashMap<String, String>
fn get_extra_action_url_map(&self) -> HashMap<String, String>
Source§fn get_current_base_url(&self) -> Option<String>
fn get_current_base_url(&self) -> Option<String>
Source§fn reverse_action(
&self,
_action_name: &str,
_args: &[&str],
) -> Result<String, Error>
fn reverse_action( &self, _action_name: &str, _args: &[&str], ) -> Result<String, Error>
Source§fn get_middleware(&self) -> Option<Arc<dyn ViewSetMiddleware>>
fn get_middleware(&self) -> Option<Arc<dyn ViewSetMiddleware>>
Source§fn requires_login(&self) -> bool
fn requires_login(&self) -> bool
Source§fn get_required_permissions(&self) -> Vec<String>
fn get_required_permissions(&self) -> Vec<String>
impl<M, S> RefUnwindSafe for ModelViewSet<M, S>
impl<M, S> UnwindSafe for ModelViewSet<M, S>
Auto Trait Implementations§
impl<M, S> Freeze for ModelViewSet<M, S>
impl<M, S> Send for ModelViewSet<M, S>
impl<M, S> Sync for ModelViewSet<M, S>
impl<M, S> Unpin for ModelViewSet<M, S>
impl<M, S> UnsafeUnpin for ModelViewSet<M, S>
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.Source§impl<V> InjectableViewSet for Vwhere
V: ViewSet,
impl<V> InjectableViewSet for Vwhere
V: ViewSet,
Source§fn resolve<'life0, 'life1, 'async_trait, T>(
&'life0 self,
request: &'life1 Request,
) -> Pin<Box<dyn Future<Output = Result<T, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
T: Injectable + Clone + Send + Sync + 'static + 'async_trait,
Self: Sync + 'async_trait,
fn resolve<'life0, 'life1, 'async_trait, T>(
&'life0 self,
request: &'life1 Request,
) -> Pin<Box<dyn Future<Output = Result<T, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
T: Injectable + Clone + Send + Sync + 'static + 'async_trait,
Self: Sync + 'async_trait,
Source§fn resolve_uncached<'life0, 'life1, 'async_trait, T>(
&'life0 self,
request: &'life1 Request,
) -> Pin<Box<dyn Future<Output = Result<T, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
T: Injectable + Clone + Send + Sync + 'static + 'async_trait,
Self: Sync + 'async_trait,
fn resolve_uncached<'life0, 'life1, 'async_trait, T>(
&'life0 self,
request: &'life1 Request,
) -> Pin<Box<dyn Future<Output = Result<T, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
T: Injectable + Clone + Send + Sync + 'static + 'async_trait,
Self: Sync + 'async_trait,
Source§fn try_resolve<'life0, 'life1, 'async_trait, T>(
&'life0 self,
request: &'life1 Request,
) -> Pin<Box<dyn Future<Output = Option<T>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
T: Injectable + Clone + Send + Sync + 'static + 'async_trait,
Self: Sync + 'async_trait,
fn try_resolve<'life0, 'life1, 'async_trait, T>(
&'life0 self,
request: &'life1 Request,
) -> Pin<Box<dyn Future<Output = Option<T>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
T: Injectable + Clone + Send + Sync + 'static + 'async_trait,
Self: Sync + 'async_trait,
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> ⓘ
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> ⓘ
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 moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::RequestSource§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
type Err = Infallible
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
Source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.