pub struct OutputFileConfig {
pub max_field_bytes: Option<u32>,
pub max_total_bytes: Option<u32>,
pub heartbeat_limit: Option<u64>,
}Expand description
[output] — server-wide output budget overrides.
These replace the former per-call max_field_bytes / max_total_bytes /
heartbeat_limit request arguments. Each is optional: unset keeps the
per-tool built-in default.
Fields§
§max_field_bytes: Option<u32>§max_total_bytes: Option<u32>§heartbeat_limit: Option<u64>Trait Implementations§
Source§impl Debug for OutputFileConfig
impl Debug for OutputFileConfig
Source§impl Default for OutputFileConfig
impl Default for OutputFileConfig
Source§fn default() -> OutputFileConfig
fn default() -> OutputFileConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputFileConfig
impl<'de> Deserialize<'de> for OutputFileConfig
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 OutputFileConfig
impl RefUnwindSafe for OutputFileConfig
impl Send for OutputFileConfig
impl Sync for OutputFileConfig
impl Unpin for OutputFileConfig
impl UnsafeUnpin for OutputFileConfig
impl UnwindSafe for OutputFileConfig
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