iso10383-types 0.4.5

ISO 10383 Types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Code which depends on the `alloc` feature

use crate::{Mic, mic};
use alloc::borrow::ToOwned;

impl ToOwned for mic {
    type Owned = Mic;

    fn to_owned(&self) -> Self::Owned {
        self.to_mic()
    }
}