use alloc::{
string::String,
vec::Vec
};
use libutils_issue::Issue;
#[must_use]
pub trait Synchronization {
fn sync(self) -> ();
fn ignore(self) -> ();
}
#[must_use]
pub trait Descriptor {
fn read(&mut self) -> Result<String, Issue>;
fn bytes(&mut self) -> Result<Vec<u8>, Issue>;
fn close(self) -> ();
}