pub struct RequestDataReturnObjectBuilder { /* private fields */ }Expand description
Builder for RequestDataReturnObject.
Implementations§
Source§impl RequestDataReturnObjectBuilder
impl RequestDataReturnObjectBuilder
Sourcepub fn object_store_data_entries(&mut self, value: Vec<DataEntry>) -> &mut Self
pub fn object_store_data_entries(&mut self, value: Vec<DataEntry>) -> &mut Self
Array of object store data entries.
Sourcepub fn has_more(&mut self, value: bool) -> &mut Self
pub fn has_more(&mut self, value: bool) -> &mut Self
If true, there are more entries to fetch in the given range.
Sourcepub fn build(
&self,
) -> Result<RequestDataReturnObject, RequestDataReturnObjectBuilderError>
pub fn build( &self, ) -> Result<RequestDataReturnObject, RequestDataReturnObjectBuilderError>
Trait Implementations§
Source§impl Clone for RequestDataReturnObjectBuilder
impl Clone for RequestDataReturnObjectBuilder
Source§fn clone(&self) -> RequestDataReturnObjectBuilder
fn clone(&self) -> RequestDataReturnObjectBuilder
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for RequestDataReturnObjectBuilder
impl RefUnwindSafe for RequestDataReturnObjectBuilder
impl Send for RequestDataReturnObjectBuilder
impl Sync for RequestDataReturnObjectBuilder
impl Unpin for RequestDataReturnObjectBuilder
impl UnsafeUnpin for RequestDataReturnObjectBuilder
impl UnwindSafe for RequestDataReturnObjectBuilder
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