pub type SRes<T> = Result<T, StructsyError>;
enum SRes<T> { Ok(T), Err(StructsyError), }
Contains the success value
Contains the error value