pub trait Freeze {
    fn freeze(&self) -> String;
}
Expand description

A trait for reactive structs that can be made unreactive and serialized to a String. structs that implement this should implement MakeUnrx for simplicity, but they technically don’t have to (they always do in Perseus macro-generated code).

Required Methods

‘Freezes’ the reactive struct by making it unreactive and converting it to a String.

Implementations on Foreign Types

Implementors