pub struct CheckSizeConfig { /* private fields */ }Expand description
Configuration for the CheckSize check.
The max_size key is a non-negative integer for the default maximum size if an attribute
does not specify a different size. Defaults to 1048576 (2²⁰) bytes or 1 megabyte.
This check is registered as a commit check with the name "check_size" and a topic check
with the name "check_size/topic".
§Example
{
"max_size": 1048576
}Trait Implementations§
Source§impl Debug for CheckSizeConfig
impl Debug for CheckSizeConfig
Source§impl<'de> Deserialize<'de> for CheckSizeConfig
impl<'de> Deserialize<'de> for CheckSizeConfig
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 CheckSizeConfig
impl RefUnwindSafe for CheckSizeConfig
impl Send for CheckSizeConfig
impl Sync for CheckSizeConfig
impl Unpin for CheckSizeConfig
impl UnwindSafe for CheckSizeConfig
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more