Struct serde_urlencoded::ser::TupleVariantSerializer
source · [−]pub struct TupleVariantSerializer<'output, T: 'output + UrlEncodedTarget> { /* private fields */ }
Expand description
Tuple variant serializer.
Never instantiated, tuple variants are not supported.
Trait Implementations
sourceimpl<'output, Target> SerializeTupleVariant for TupleVariantSerializer<'output, Target> where
Target: 'output + UrlEncodedTarget,
impl<'output, Target> SerializeTupleVariant for TupleVariantSerializer<'output, Target> where
Target: 'output + UrlEncodedTarget,
type Ok = &'output mut UrlEncodedSerializer<Target>
type Ok = &'output mut UrlEncodedSerializer<Target>
Must match the Ok
type of our Serializer
.
Auto Trait Implementations
impl<'output, T> !RefUnwindSafe for TupleVariantSerializer<'output, T>
impl<'output, T> !Send for TupleVariantSerializer<'output, T>
impl<'output, T> !Sync for TupleVariantSerializer<'output, T>
impl<'output, T> Unpin for TupleVariantSerializer<'output, T>
impl<'output, T> !UnwindSafe for TupleVariantSerializer<'output, T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more