Skip to main content
KeyOS API Reference

LendMutResponse

Trait LendMutResponse 

Source
pub trait LendMutResponse {
    // Required methods
    fn from_usize_pair(arg1: usize, arg2: usize) -> Self;
    fn to_usize_pair(self) -> (usize, usize);
}

Required Methods§

Source

fn from_usize_pair(arg1: usize, arg2: usize) -> Self

Source

fn to_usize_pair(self) -> (usize, usize)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl LendMutResponse for ()

Source§

impl LendMutResponse for usize

Source§

impl<T1: From<usize> + Into<usize>, T2: From<usize> + Into<usize>> LendMutResponse for Result<T1, T2>

Source§

fn from_usize_pair(arg1: usize, arg2: usize) -> Self

Source§

fn to_usize_pair(self) -> (usize, usize)

Implementors§