pub struct RequestEntriesParams {
pub cache_id: CacheId,
pub skip_count: Option<i64>,
pub page_size: Option<i64>,
pub path_filter: Option<String>,
}Expand description
Requests data from cache. requestEntries
Fields§
§cache_id: CacheIdID of cache to get entries from.
skip_count: Option<i64>Number of records to skip.
page_size: Option<i64>Number of records to fetch.
path_filter: Option<String>If present, only return the entries containing this substring in the path
Implementations§
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<'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
Source§impl PartialEq for RequestEntriesParams
impl PartialEq for RequestEntriesParams
Source§impl Serialize for RequestEntriesParams
impl Serialize for RequestEntriesParams
impl StructuralPartialEq for RequestEntriesParams
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