ironrdp-core 0.2.0

IronRDP common traits and types
Documentation
1
2
3
4
5
6
7
8
/// Used to produce an owned version of a given data.
pub trait IntoOwned: Sized {
    /// The resulting type after obtaining ownership.
    type Owned: 'static;

    /// Creates owned data from data.
    fn into_owned(self) -> Self::Owned;
}