pub struct ReadOnlyModelViewSet<M, S> { /* private fields */ }Available on non-WebAssembly only.
Expand description
ReadOnlyModelViewSet - only list and retrieve Demonstrates selective composition of mixins
Implementations§
Source§impl<M, S> ReadOnlyModelViewSet<M, S>where
M: 'static,
S: 'static,
impl<M, S> ReadOnlyModelViewSet<M, S>where
M: 'static,
S: 'static,
Sourcepub fn new(basename: impl Into<String>) -> ReadOnlyModelViewSet<M, S>
pub fn new(basename: impl Into<String>) -> ReadOnlyModelViewSet<M, S>
Creates a new ReadOnlyModelViewSet with the given basename.
§Examples
use reinhardt_views::viewsets::{ReadOnlyModelViewSet, 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 = ReadOnlyModelViewSet::<User, reinhardt_rest::serializers::JsonSerializer<User>>::new("users");
assert_eq!(viewset.get_basename(), "users");Sourcepub fn with_lookup_field(
self,
field: impl Into<String>,
) -> ReadOnlyModelViewSet<M, S>
pub fn with_lookup_field( self, field: impl Into<String>, ) -> ReadOnlyModelViewSet<M, S>
Set custom lookup field for this ViewSet
Sourcepub fn with_pagination(
self,
config: PaginationConfig,
) -> ReadOnlyModelViewSet<M, S>
pub fn with_pagination( self, config: PaginationConfig, ) -> ReadOnlyModelViewSet<M, S>
Set pagination configuration for this ViewSet
Sourcepub fn without_pagination(self) -> ReadOnlyModelViewSet<M, S>
pub fn without_pagination(self) -> ReadOnlyModelViewSet<M, S>
Disable pagination for this ViewSet
Sourcepub fn with_filters(self, config: FilterConfig) -> ReadOnlyModelViewSet<M, S>
pub fn with_filters(self, config: FilterConfig) -> ReadOnlyModelViewSet<M, S>
Set filter configuration for this ViewSet
§Examples
ⓘ
use reinhardt_views::viewsets::{ReadOnlyModelViewSet, FilterConfig};
let viewset = ReadOnlyModelViewSet::<MyModel, MySerializer>::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) -> ReadOnlyModelViewSet<M, S>
pub fn with_ordering(self, config: OrderingConfig) -> ReadOnlyModelViewSet<M, S>
Set ordering configuration for this ViewSet
§Examples
ⓘ
use reinhardt_views::viewsets::{ReadOnlyModelViewSet, OrderingConfig};
let viewset = ReadOnlyModelViewSet::<MyModel, MySerializer>::new("items")
.with_ordering(
OrderingConfig::new()
.with_ordering_fields(vec!["created_at", "title"])
.with_default_ordering(vec!["-created_at"])
);Sourcepub fn as_view(self) -> ViewSetBuilder<ReadOnlyModelViewSet<M, S>>
pub fn as_view(self) -> ViewSetBuilder<ReadOnlyModelViewSet<M, S>>
Convert ViewSet to Handler with action mapping Returns a ViewSetBuilder for configuration
Trait Implementations§
Source§impl<M, S> FilterableViewSet for ReadOnlyModelViewSet<M, S>
impl<M, S> FilterableViewSet for ReadOnlyModelViewSet<M, S>
Source§fn get_filter_config(&self) -> Option<FilterConfig>
fn get_filter_config(&self) -> Option<FilterConfig>
Get filter configuration for this ViewSet
Source§fn get_ordering_config(&self) -> Option<OrderingConfig>
fn get_ordering_config(&self) -> Option<OrderingConfig>
Get ordering configuration for this ViewSet
Source§fn extract_filters(&self, request: &Request) -> HashMap<String, String>
fn extract_filters(&self, request: &Request) -> HashMap<String, String>
Extract filter parameters from request Read more
Source§impl<M, S> PaginatedViewSet for ReadOnlyModelViewSet<M, S>
impl<M, S> PaginatedViewSet for ReadOnlyModelViewSet<M, S>
Source§fn get_pagination_config(&self) -> Option<PaginationConfig>
fn get_pagination_config(&self) -> Option<PaginationConfig>
Get pagination configuration for this ViewSet Read more
Source§impl<M, S> ViewSet for ReadOnlyModelViewSet<M, S>
impl<M, S> ViewSet for ReadOnlyModelViewSet<M, S>
Source§fn get_basename(&self) -> &str
fn get_basename(&self) -> &str
Get the basename for URL routing
Source§fn get_lookup_field(&self) -> &str
fn get_lookup_field(&self) -> &str
Get the lookup field for detail routes
Defaults to “id” if not overridden
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,
ReadOnlyModelViewSet<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,
ReadOnlyModelViewSet<M, S>: 'async_trait,
Dispatch request to appropriate action
Source§fn get_extra_actions(&self) -> Vec<ActionMetadata>
fn get_extra_actions(&self) -> Vec<ActionMetadata>
Dispatch request with dependency injection context Read more
Source§fn get_extra_action_url_map(&self) -> HashMap<String, String>
fn get_extra_action_url_map(&self) -> HashMap<String, String>
Get URL map for extra actions
Returns empty map for uninitialized ViewSets
Source§fn get_current_base_url(&self) -> Option<String>
fn get_current_base_url(&self) -> Option<String>
Get current base URL (only available after initialization)
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>
Reverse an action name to a URL
Source§fn get_middleware(&self) -> Option<Arc<dyn ViewSetMiddleware>>
fn get_middleware(&self) -> Option<Arc<dyn ViewSetMiddleware>>
Get middleware for this ViewSet
Returns None if no middleware is configured
Source§fn requires_login(&self) -> bool
fn requires_login(&self) -> bool
Check if login is required for this ViewSet
Source§fn get_required_permissions(&self) -> Vec<String>
fn get_required_permissions(&self) -> Vec<String>
Get required permissions for this ViewSet
Auto Trait Implementations§
impl<M, S> Freeze for ReadOnlyModelViewSet<M, S>
impl<M, S> RefUnwindSafe for ReadOnlyModelViewSet<M, S>where
M: RefUnwindSafe,
S: RefUnwindSafe,
impl<M, S> Send for ReadOnlyModelViewSet<M, S>
impl<M, S> Sync for ReadOnlyModelViewSet<M, S>
impl<M, S> Unpin for ReadOnlyModelViewSet<M, S>
impl<M, S> UnsafeUnpin for ReadOnlyModelViewSet<M, S>
impl<M, S> UnwindSafe for ReadOnlyModelViewSet<M, S>where
M: UnwindSafe,
S: UnwindSafe,
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
Mutably borrows from an owned value. Read more
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,
Causes
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,
Causes
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,
Causes
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,
Causes
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,
Causes
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,
Causes
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,
Causes
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,
Causes
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,
Resolve a dependency from the request’s DI context with caching Read more
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,
Resolve a dependency from the request’s DI context without caching Read more
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,
Try to resolve a dependency, returning None if DI context is not available Read more
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 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>
Wrap the input message
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>
Creates a shared type from an unshared type.
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,
Pipes by value. This is generally the method you want to use. Read more
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,
Borrows
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,
Mutably borrows
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
Borrows
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
Mutably borrows
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
Borrows
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
Immutable access to the
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
Mutable access to the
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
Immutable access to the
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
Mutable access to the
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
Immutable access to the
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
Mutable access to the
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
Calls
.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
Calls
.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
Calls
.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
Calls
.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
Calls
.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
Calls
.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
Calls
.tap_deref() only in debug builds, and is erased in release
builds.