enum MaxDepthMap {
Active {
serializer: MaxDepthSerializer,
map: Map<String, Value>,
next_key: Option<String>,
},
VariantActive {
serializer: MaxDepthSerializer,
variant: String,
map: Map<String, Value>,
next_key: Option<String>,
},
Truncated,
}Variants§
Trait Implementations§
Source§impl SerializeMap for MaxDepthMap
impl SerializeMap for MaxDepthMap
Source§impl SerializeStruct for MaxDepthMap
impl SerializeStruct for MaxDepthMap
Source§impl SerializeStructVariant for MaxDepthMap
impl SerializeStructVariant for MaxDepthMap
Auto Trait Implementations§
impl Freeze for MaxDepthMap
impl RefUnwindSafe for MaxDepthMap
impl Send for MaxDepthMap
impl Sync for MaxDepthMap
impl Unpin for MaxDepthMap
impl UnsafeUnpin for MaxDepthMap
impl UnwindSafe for MaxDepthMap
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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