pub struct TruncationConfig {
pub max_length: usize,
pub strategy: TruncationStrategy,
}Expand description
Truncation configuration
Fields§
§max_length: usizeMaximum length
strategy: TruncationStrategyTruncation strategy
Trait Implementations§
Source§impl Clone for TruncationConfig
impl Clone for TruncationConfig
Source§fn clone(&self) -> TruncationConfig
fn clone(&self) -> TruncationConfig
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 TruncationConfig
impl Debug for TruncationConfig
Source§impl<'de> Deserialize<'de> for TruncationConfig
impl<'de> Deserialize<'de> for TruncationConfig
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 TruncationConfig
impl RefUnwindSafe for TruncationConfig
impl Send for TruncationConfig
impl Sync for TruncationConfig
impl Unpin for TruncationConfig
impl UnsafeUnpin for TruncationConfig
impl UnwindSafe for TruncationConfig
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