pub struct InMemoryTaskConfig {
pub max_tasks: usize,
pub default_page_size: u32,
}Expand description
Configuration for the in-memory task storage backend.
Fields§
§max_tasks: usizeMaximum number of tasks to store (0 = unlimited)
default_page_size: u32Default page size for list operations
Trait Implementations§
Source§impl Clone for InMemoryTaskConfig
impl Clone for InMemoryTaskConfig
Source§fn clone(&self) -> InMemoryTaskConfig
fn clone(&self) -> InMemoryTaskConfig
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 InMemoryTaskConfig
impl Debug for InMemoryTaskConfig
Auto Trait Implementations§
impl Freeze for InMemoryTaskConfig
impl RefUnwindSafe for InMemoryTaskConfig
impl Send for InMemoryTaskConfig
impl Sync for InMemoryTaskConfig
impl Unpin for InMemoryTaskConfig
impl UnsafeUnpin for InMemoryTaskConfig
impl UnwindSafe for InMemoryTaskConfig
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