Struct decthings_api::rpc::dataset::GetEntriesParams
source · pub struct GetEntriesParams<'a> {
pub dataset_id: &'a str,
pub entries: EntriesToGet<'a>,
pub dataset_version_id: Option<&'a str>,
}
Fields§
§dataset_id: &'a str
The dataset’s id.
entries: EntriesToGet<'a>
Which entries to fetch. Either an array of indexes or a start/end range.
dataset_version_id: Option<&'a str>
If specified, the operation will only be performed if the current dataset versionId is equal to the specified string.
Trait Implementations§
source§impl<'a> Clone for GetEntriesParams<'a>
impl<'a> Clone for GetEntriesParams<'a>
source§fn clone(&self) -> GetEntriesParams<'a>
fn clone(&self) -> GetEntriesParams<'a>
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<'a> Debug for GetEntriesParams<'a>
impl<'a> Debug for GetEntriesParams<'a>
Auto Trait Implementations§
impl<'a> Freeze for GetEntriesParams<'a>
impl<'a> RefUnwindSafe for GetEntriesParams<'a>
impl<'a> Send for GetEntriesParams<'a>
impl<'a> Sync for GetEntriesParams<'a>
impl<'a> Unpin for GetEntriesParams<'a>
impl<'a> UnwindSafe for GetEntriesParams<'a>
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