pub struct Limits {
pub rows: u64,
pub cells: u64,
pub bytes: u64,
pub work: u64,
pub deadline: Option<Duration>,
pub buffer_bytes: Option<u64>,
}Expand description
Mandatory execution maxima and optional time/buffering bounds.
Fields§
§rows: u64Maximum emitted rows.
cells: u64Maximum emitted cells.
bytes: u64Maximum logical datum bytes.
work: u64Maximum provider work units.
deadline: Option<Duration>Optional elapsed deadline.
buffer_bytes: Option<u64>Optional maximum provider buffering.
Implementations§
Trait Implementations§
impl Copy for Limits
impl Eq for Limits
impl StructuralPartialEq for Limits
Auto Trait Implementations§
impl Freeze for Limits
impl RefUnwindSafe for Limits
impl Send for Limits
impl Sync for Limits
impl Unpin for Limits
impl UnsafeUnpin for Limits
impl UnwindSafe for Limits
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