alright 0.1.4

A Safe-running, error-free, error-transmission without loss and 0 `unsafe block` error handling system - Aiming to provide a better development experience for the application layer.
Documentation
1
2
3
4
5
6
7
8
9
use crate::traits::Transform;
use crate::Property;

pub trait ExceptionUtils<T: Transform> {
    fn get_property (&self) -> Box<Property<T>>;
    fn set_property (&mut self, property: Box<Property<T>>);
    fn get_ptr (&self) -> T;
    fn set_ptr (&mut self, ptr: T);
}