scale_signature 0.2.6

The definitions and tooling required to test and consume Rust Signatures for Scale Functions.
Documentation
/*
    Copyright 2022 Loophole Labs

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

           http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pub type NewSignature<T> = fn() -> T;

pub trait Signature {
    fn runtime_context(&mut self) -> &mut dyn RuntimeContext;
}

pub trait Context {
    fn guest_context(&mut self) -> &mut dyn GuestContext;
}

pub trait RuntimeContext {
    fn read(&mut self, b: &mut Vec<u8>) -> Option<Box<dyn std::error::Error>>;
    fn write(&self) -> Vec<u8>;
    fn error(&self, err: Box<dyn std::error::Error>) -> Vec<u8>;
}

pub trait GuestContext {
    unsafe fn from_read_buffer(&mut self) -> Option<Box<dyn std::error::Error>>;
    unsafe fn to_write_buffer(&mut self) -> (u32, u32);
    unsafe fn error_write_buffer(&mut self, err: Box<dyn std::error::Error>) -> (u32, u32);
}