pub struct RequestDataReturns {
pub object_store_data_entries: Vec<DataEntry>,
pub has_more: bool,
}
Expand description
Requests data from object store or index. requestData
Fields§
§object_store_data_entries: Vec<DataEntry>
Array of object store data entries.
has_more: bool
If true, there are more entries to fetch in the given range.
Implementations§
Source§impl RequestDataReturns
impl RequestDataReturns
pub fn builder() -> RequestDataReturnsBuilder
Trait Implementations§
Source§impl Clone for RequestDataReturns
impl Clone for RequestDataReturns
Source§fn clone(&self) -> RequestDataReturns
fn clone(&self) -> RequestDataReturns
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RequestDataReturns
impl Debug for RequestDataReturns
Source§impl<'de> Deserialize<'de> for RequestDataReturns
impl<'de> Deserialize<'de> for RequestDataReturns
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RequestDataReturns, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RequestDataReturns, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RequestDataReturns
impl PartialEq for RequestDataReturns
Source§impl Serialize for RequestDataReturns
impl Serialize for RequestDataReturns
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for RequestDataReturns
Auto Trait Implementations§
impl Freeze for RequestDataReturns
impl RefUnwindSafe for RequestDataReturns
impl Send for RequestDataReturns
impl Sync for RequestDataReturns
impl Unpin for RequestDataReturns
impl UnwindSafe for RequestDataReturns
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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