pub struct RequestEntriesCommand { /* private fields */ }Available on crate features
experimental and CacheStorage only.Expand description
Requests data from cache.
Implementations§
Source§impl RequestEntriesCommand
impl RequestEntriesCommand
pub fn builder() -> RequestEntriesCommandBuilder
Sourcepub fn skip_count(&self) -> Option<&u32>
pub fn skip_count(&self) -> Option<&u32>
Number of records to skip.
Sourcepub fn path_filter(&self) -> Option<&String>
pub fn path_filter(&self) -> Option<&String>
If present, only return the entries containing this substring in the path
Trait Implementations§
Source§impl Clone for RequestEntriesCommand
impl Clone for RequestEntriesCommand
Source§fn clone(&self) -> RequestEntriesCommand
fn clone(&self) -> RequestEntriesCommand
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 Command for RequestEntriesCommand
impl Command for RequestEntriesCommand
Source§impl Debug for RequestEntriesCommand
impl Debug for RequestEntriesCommand
Source§impl<'de> Deserialize<'de> for RequestEntriesCommand
impl<'de> Deserialize<'de> for RequestEntriesCommand
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 RequestEntriesCommand
impl RefUnwindSafe for RequestEntriesCommand
impl Send for RequestEntriesCommand
impl Sync for RequestEntriesCommand
impl Unpin for RequestEntriesCommand
impl UnwindSafe for RequestEntriesCommand
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