1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// License: see LICENSE file at root directory of `master` branch

//! # Read-only [`Args`][::Args]
//!
//! [::Args]: struct.Args.html

use std::{
    ops::Deref,
};

use crate::Args;

/// # Read-only [`Args`][::Args]
///
/// This struct is simply a read-only wrapper of [`Args`][::Args].
///
/// [::Args]: struct.Args.html
#[derive(Debug, Clone)]
pub struct ReadOnlyArgs {

    /// # Args
    args: Args,

}

impl ReadOnlyArgs {

    /// # Makes new instance
    pub const fn new(args: Args) -> Self {
        Self {
            args,
        }
    }

}

impl Deref for ReadOnlyArgs {

    type Target = Args;

    fn deref(&self) -> &Self::Target {
        &self.args
    }

}

impl From<Args> for ReadOnlyArgs {

    fn from(args: Args) -> Self {
        Self::new(args)
    }

}