Struct DatapointStoredQueryParams
pub struct DatapointStoredQueryParams {
pub names: Vec<String>,
pub from: Option<i64>,
pub to: Option<i64>,
pub limit: Option<u64>,
}Fields§
§names: Vec<String>§from: Option<i64>§to: Option<i64>§limit: Option<u64>Trait Implementations§
§impl ComposeSchema for DatapointStoredQueryParams
impl ComposeSchema for DatapointStoredQueryParams
§impl Debug for DatapointStoredQueryParams
impl Debug for DatapointStoredQueryParams
§impl<'de> Deserialize<'de> for DatapointStoredQueryParams
impl<'de> Deserialize<'de> for DatapointStoredQueryParams
§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl IntoParams for DatapointStoredQueryParams
impl IntoParams for DatapointStoredQueryParams
§impl Serialize for DatapointStoredQueryParams
impl Serialize for DatapointStoredQueryParams
Auto Trait Implementations§
impl Freeze for DatapointStoredQueryParams
impl RefUnwindSafe for DatapointStoredQueryParams
impl Send for DatapointStoredQueryParams
impl Sync for DatapointStoredQueryParams
impl Unpin for DatapointStoredQueryParams
impl UnwindSafe for DatapointStoredQueryParams
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<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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