pub type SerializationResult<T> = Result<T, SerializationError>;Expand description
Result type for serialization operations
This type alias provides a convenient way to express the result of any
serialization or deserialization operation. It uses the standard Result
type with SerializationError as the error variant.
Aliased Type§
pub enum SerializationResult<T> {
Ok(T),
Err(SerializationError),
}