Trait mz_catalog::durable::objects::state_update::TryIntoStateUpdateKind
source · pub(crate) trait TryIntoStateUpdateKind: IntoStateUpdateKindJson {
type Error: Debug;
// Required method
fn try_into(
self,
) -> Result<StateUpdateKind, <Self as TryIntoStateUpdateKind>::Error>;
}
Expand description
Trait for objects that can be converted to/from a StateUpdateKind
.
Required Associated Types§
Required Methods§
fn try_into( self, ) -> Result<StateUpdateKind, <Self as TryIntoStateUpdateKind>::Error>
Object Safety§
This trait is not object safe.