pub struct TomlLimits {
pub max_depth: usize,
pub max_string_len: usize,
pub max_array_len: usize,
pub max_table_len: usize,
pub max_node_count: usize,
}Fields§
§max_depth: usize§max_string_len: usize§max_array_len: usize§max_table_len: usize§max_node_count: usizeTrait Implementations§
Source§impl Clone for TomlLimits
impl Clone for TomlLimits
Source§fn clone(&self) -> TomlLimits
fn clone(&self) -> TomlLimits
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TomlLimits
impl Debug for TomlLimits
Source§impl PartialEq for TomlLimits
impl PartialEq for TomlLimits
Source§fn eq(&self, other: &TomlLimits) -> bool
fn eq(&self, other: &TomlLimits) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TomlLimits
impl Eq for TomlLimits
impl StructuralPartialEq for TomlLimits
Auto Trait Implementations§
impl Freeze for TomlLimits
impl RefUnwindSafe for TomlLimits
impl Send for TomlLimits
impl Sync for TomlLimits
impl Unpin for TomlLimits
impl UnsafeUnpin for TomlLimits
impl UnwindSafe for TomlLimits
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