pub struct RequestEntriesParams {
pub cacheId: CacheId,
pub skipCount: Option<u64>,
pub pageSize: Option<u64>,
pub pathFilter: Option<String>,
}Expand description
Requests data from cache.
Fields§
§cacheId: CacheIdID of cache to get entries from.
skipCount: Option<u64>Number of records to skip.
pageSize: Option<u64>Number of records to fetch.
pathFilter: Option<String>If present, only return the entries containing this substring in the path
Trait Implementations§
Source§impl Clone for RequestEntriesParams
impl Clone for RequestEntriesParams
Source§fn clone(&self) -> RequestEntriesParams
fn clone(&self) -> RequestEntriesParams
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 moreSource§impl Debug for RequestEntriesParams
impl Debug for RequestEntriesParams
Source§impl Default for RequestEntriesParams
impl Default for RequestEntriesParams
Source§fn default() -> RequestEntriesParams
fn default() -> RequestEntriesParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RequestEntriesParams
impl<'de> Deserialize<'de> for RequestEntriesParams
Source§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
Auto Trait Implementations§
impl Freeze for RequestEntriesParams
impl RefUnwindSafe for RequestEntriesParams
impl Send for RequestEntriesParams
impl Sync for RequestEntriesParams
impl Unpin for RequestEntriesParams
impl UnsafeUnpin for RequestEntriesParams
impl UnwindSafe for RequestEntriesParams
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