pub fn serialize_ref_mut<S, T>(
    x: &&mut T,
    serializer: S
) -> Result<S::Ok, S::Error>where
    S: Serializer,
    T: Serialize,
Expand description

serialize_ref_mut is similar to serialize_ref, except it operates on a mutable reference instead of an immutable one.