Trait ToJmespath

Source
pub trait ToJmespath {
    // Required method
    fn to_jmespath(self) -> Result<Rcvar, JmespathError>;
}
Expand description

Converts a value into a reference-counted JMESPath Variable.

There is a generic serde Serialize implementation. Since this documentation was compiled with the specialized feature turned off, this is the only implementation available.

(If the specialized feature were turned on, there there would be a number of additional specialized implementations for ToJmespath built into the library that should work for most cases.)

Required Methods§

Implementors§

Source§

impl<'a, T: Serialize> ToJmespath for T

Create searchable values from Serde serializable values.