Struct django_query::mock::NestedEndpointParams
source · [−]pub struct NestedEndpointParams<'a, T> {
pub root: &'a str,
pub parent: &'a str,
pub child: &'a str,
pub parent_query: &'a str,
pub row_source: T,
pub base_uri: Option<&'a str>,
}
Expand description
The construction parameters for NestedEndpoint
Fields
root: &'a str
The base mock path, without trailing slash, for example "/api/v0.2"
parent: &'a str
The objects this endpoint is nested under, for example "bars"
.
child: &'a str
The objects this endpoint serves, for example "foos"
parent_query: &'a str
The filter path for the parent from the child, so for
example "parent"
if the filter expression for a given
Foo to obtain its containing Bar is "parent"
.
row_source: T
The actual data to serve, as for Endpoint
base_uri: Option<&'a str>
The mock server URI, since wiremock does not make this available to us; specifying None here will break pagination (if requested) until wiremock propagates this information.
Auto Trait Implementations
impl<'a, T> RefUnwindSafe for NestedEndpointParams<'a, T> where
T: RefUnwindSafe,
impl<'a, T> Send for NestedEndpointParams<'a, T> where
T: Send,
impl<'a, T> Sync for NestedEndpointParams<'a, T> where
T: Sync,
impl<'a, T> Unpin for NestedEndpointParams<'a, T> where
T: Unpin,
impl<'a, T> UnwindSafe for NestedEndpointParams<'a, T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more