musli_core/de/
decode_unsized.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use super::Decoder;

/// A trait implemented for types which can only be decoded by reference.
///
/// This is used for types like `str` which are unsized, and might require
/// internal allocating to properly decode. Simply using the `Decode`
/// implementation would restrict it to only be used through `&'de str` which
/// would demand an exact reference to data from the decoded source.
pub trait DecodeUnsized<'de, M> {
    /// Decode the given input using a closure as visitor.
    fn decode_unsized<D, F, O>(cx: &D::Cx, decoder: D, f: F) -> Result<O, D::Error>
    where
        D: Decoder<'de, Mode = M>,
        F: FnOnce(&Self) -> Result<O, D::Error>;
}