MatiOS-SDK-Rust 0.1.3

Sdk for creating apps for MatiOS in rust
Documentation
use crate::syscalls::SyscallRequest;
use crate::uuid::Uuid;
use alloc::boxed::Box;
use alloc::string::String;
pub struct CurrentProcessInfoV1Request {}
#[repr(C)]
pub struct CurrentProcessInfoV1Response {
    pub uuid: Uuid,
    pub name: String,
}

impl CurrentProcessInfoV1Request {
    pub fn create() -> Box<SyscallRequest<Self>> {
        Box::new(SyscallRequest {
            size: size_of::<Self>(),
            uuid: crate::uuid::Uuid::parse_str("6ac0d646-72dc-4fe4-9fdc-f944f1a61491")
                .unwrap(),
            payload: Self {},
        })
    }
}